-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: shrink and improve Linux workflows
Add a new `linux` workflow that replaces cross_test, linux_ci, linux_ci_asan, and linux_ci_asan_noasm.
- Loading branch information
1 parent
b16146e
commit ba296ec
Showing
5 changed files
with
62 additions
and
87 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# GitHub Actions workflow to run tests on Linux. | ||
name: "Linux" | ||
|
||
on: | ||
push: {} | ||
pull_request: {} | ||
schedule: | ||
- cron: "0 0 * * *" # At 00:00 daily. | ||
|
||
jobs: | ||
# Test against all supported architectures. | ||
test: | ||
name: "${{ matrix.os }}/${{ matrix.arch }} (${{ matrix.compiler }})" | ||
runs-on: "${{ matrix.os }}" | ||
permissions: | ||
contents: read | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: ["ubuntu-20.04", "ubuntu-22.04"] | ||
arch: ["native", "arm32", "arm64", "mingw32", "mingw64", "mips32", "mips64"] | ||
compiler: ["gcc"] | ||
include: | ||
- os: "ubuntu-20.04" | ||
arch: "native" | ||
compiler: "clang" | ||
- os: "ubuntu-22.04" | ||
arch: "native" | ||
compiler: "clang" | ||
steps: | ||
- name: "Checkout repository" | ||
uses: actions/checkout@v4 | ||
|
||
- name: "Run tests" | ||
run: ./scripts/test | ||
env: | ||
ARCH: "${{ matrix.arch }}" | ||
CC: "${{ matrix.compiler }}" | ||
|
||
# Test ASAN with and without ASM enabled. | ||
test-asan: | ||
name: "ASAN (${{ matrix.asm == 'ON' && 'asm' || 'no-asm' }})" | ||
runs-on: "ubuntu-latest" | ||
permissions: | ||
contents: read | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
asm: [ON, OFF] | ||
steps: | ||
- name: "Checkout repository" | ||
uses: actions/checkout@v4 | ||
|
||
- name: "Run tests" | ||
run: ./scripts/test | ||
env: | ||
ARCH: "native" | ||
CC: "clang" | ||
CFLAGS: "-ggdb -fsanitize=address" | ||
LDFLAGS: "-fsanitize=address" | ||
ENABLE_ASM: "${{ matrix.asm }}" | ||
CTEST_OUTPUT_ON_FAILURE: 1 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.