Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .github/workflows/test-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,6 @@ jobs:
1>/dev/null 2>/tmp/dotest-android-x86_64.log;
rc=$?; grep -v '^UNSUPPORTED: LLDB ' /tmp/dotest-android-x86_64.log; exit $rc

test-android-x86_64-status:
needs: [test-android-x86_64]
if: always()
runs-on: ubuntu-latest
name: Test Android x86_64 (status)
steps:
- if: needs.test-android-x86_64.result != 'success'
run: exit 1

# Run a small sub-set of tests on arm64. The emulator is very slow so it is
# not practical to run more tests until we can run on an arm64 runner with
# virtualization. Only one category runs here, so this already reports as
Expand Down
32 changes: 1 addition & 31 deletions .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@ jobs:
# into a single collapsible entry in the PR checks list, which is what
# actually fixes the one-check-per-category-per-arch clutter -- varying the
# name per category is what defeats that grouping and is why each category
# showed up as its own separate, differently-named check before. The
# *-status job per arch gives branch protection one plain, matrix-independent
# check name to require rather than depending on how that grouping is
# surfaced there.
# showed up as its own separate, differently-named check before.

test-linux-i686:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -89,15 +86,6 @@ jobs:
working-dir: ${{ github.workspace }}/temp
test-subdirs: ${{ steps.test-subdirs.outputs.dirs }}

test-linux-i686-status:
needs: [test-linux-i686]
if: always()
runs-on: ubuntu-latest
name: Test Linux i686 (status)
steps:
- if: needs.test-linux-i686.result != 'success'
run: exit 1

test-linux-x86_64:
runs-on: ubuntu-latest
name: Test Linux x86_64
Expand Down Expand Up @@ -149,15 +137,6 @@ jobs:
working-dir: ${{ github.workspace }}/temp
test-subdirs: ${{ steps.test-subdirs.outputs.dirs }}

test-linux-x86_64-status:
needs: [test-linux-x86_64]
if: always()
runs-on: ubuntu-latest
name: Test Linux x86_64 (status)
steps:
- if: needs.test-linux-x86_64.result != 'success'
run: exit 1

test-linux-aarch64:
runs-on: ubuntu-24.04-arm
name: Test Linux aarch64
Expand Down Expand Up @@ -208,12 +187,3 @@ jobs:
platform: linux
working-dir: ${{ github.workspace }}/temp
test-subdirs: ${{ steps.test-subdirs.outputs.dirs }}

test-linux-aarch64-status:
needs: [test-linux-aarch64]
if: always()
runs-on: ubuntu-latest
name: Test Linux aarch64 (status)
steps:
- if: needs.test-linux-aarch64.result != 'success'
run: exit 1
Loading