Skip to content

Commit

Permalink
OPSEXP-2258 Enable testing rpms for arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
pmacius committed Nov 15, 2024
1 parent 741d327 commit f52ea30
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
runs-on: ubuntu-latest
outputs:
matrix_rpms: ${{ steps.set-matrix.outputs.matrix_rpms }}
matrix_test: ${{ steps.set-matrix.outputs.matrix_test }}
matrix_debs: ${{ steps.set-matrix.outputs.matrix_debs }}
steps:
- name: Checkout to repository
Expand All @@ -24,7 +23,6 @@ jobs:
run: |
echo "matrix_rpms=$(jq -c . < ./rpms/config.json)" >> $GITHUB_OUTPUT
echo "matrix_debs=$(jq -c . < ./debs/config.json)" >> $GITHUB_OUTPUT
echo "matrix_test=$(jq -c 'del(.include[] | select(.target_arch == "aarch64"))' < rpms/config.json)" >> $GITHUB_OUTPUT
build_rpms:
name: Build ${{ matrix.base_image }} ${{ matrix.target_arch }}
Expand Down Expand Up @@ -71,7 +69,7 @@ jobs:
- configure
- build_rpms
strategy:
matrix: ${{ fromJson(needs.configure.outputs.matrix_test) }}
matrix: ${{ fromJson(needs.configure.outputs.matrix_rpms) }}
fail-fast: false

steps:
Expand Down

0 comments on commit f52ea30

Please sign in to comment.