Skip to content

Commit

Permalink
fix(ci): temporarily remove arm64 test jobs
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Guerra <[email protected]>
  • Loading branch information
LucaGuerra committed Oct 31, 2024
1 parent e8ec480 commit b06c376
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 16 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,17 @@ jobs:
# static: ${{ matrix.static != '' && true || false }}
version: ${{ needs.fetch-version.outputs.version }}

test-dev-packages-arm64:
needs: [fetch-version, build-dev-packages-arm64]
uses: ./.github/workflows/reusable_test_packages.yaml
strategy:
fail-fast: false
with:
arch: aarch64
static: ${{ matrix.static != '' && true || false }}
version: ${{ needs.fetch-version.outputs.version }}
# note: the test-dev-packages-arm64 job is temporarily disabled due to github actions runner
# capacity issues
# test-dev-packages-arm64:
# needs: [fetch-version, build-dev-packages-arm64]
# uses: ./.github/workflows/reusable_test_packages.yaml
# strategy:
# fail-fast: false
# with:
# arch: aarch64
# static: ${{ matrix.static != '' && true || false }}
# version: ${{ needs.fetch-version.outputs.version }}

build-dev-minimal:
uses: ./.github/workflows/reusable_build_dev.yaml
Expand Down
16 changes: 9 additions & 7 deletions .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,17 @@ jobs:
# static: ${{ matrix.static != '' && true || false }}
version: ${{ needs.fetch-version.outputs.version }}

test-dev-packages-arm64:
needs: [fetch-version, build-dev-packages-arm64]
uses: ./.github/workflows/reusable_test_packages.yaml
with:
arch: aarch64
version: ${{ needs.fetch-version.outputs.version }}
# note: the test-dev-packages-arm64 job is temporarily disabled due to github actions runner
# capacity issues
# test-dev-packages-arm64:
# needs: [fetch-version, build-dev-packages-arm64]
# uses: ./.github/workflows/reusable_test_packages.yaml
# with:
# arch: aarch64
# version: ${{ needs.fetch-version.outputs.version }}

publish-dev-packages:
needs: [fetch-version, test-dev-packages, test-dev-packages-arm64]
needs: [fetch-version, build-dev-packages-arm64]
uses: ./.github/workflows/reusable_publish_packages.yaml
with:
bucket_suffix: '-dev'
Expand Down

0 comments on commit b06c376

Please sign in to comment.