CI: limit scheduled runs to "libressl" org only #258
Workflow file for this run
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
# GitHub Actions workflow to run tests on Linux. | |
name: "Linux" | |
on: | |
push: {} | |
pull_request: {} | |
schedule: | |
- cron: "0 0 * * *" # At 00:00 daily. | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
# Test against all supported architectures. | |
test: | |
name: "${{ matrix.os }}/${{ matrix.arch }} (${{ matrix.compiler }})" | |
runs-on: "${{ matrix.os }}" | |
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }} | |
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" | |
if: ${{ github.repository_owner == 'libressl' || github.event_name != 'schedule' }} | |
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 |