Skip to content

Reintroduce linux sanitizer workflows for badges #14

Reintroduce linux sanitizer workflows for badges

Reintroduce linux sanitizer workflows for badges #14

Workflow file for this run

name: "CI for Pull Requests"
on:
pull_request:
branches: [ 'main' ]
push:
branches: [ 'main' ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
check-licenses:
name: License checks for SIL Kit sources
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: false
- name: Install Dependencies
id: dep-install
run: |
sudo apt install licensecheck
- name: Check Licenses
id: license-check
run: |
sh ./SilKit/ci/check_licenses.sh
shell: bash
clang14-tsan:
name: Thread Sanitizer Tests
needs: check-licenses
uses: ./.github/workflows/linux-tsan.yml
clang14-ubsan:
name: Undefined Behavior Sanitizer Tests
needs: check-licenses
uses: ./.github/workflows/linux-ubsan.yml
clang14-asan:
name: Address Sanitizer Tests
needs: check-licenses
uses: ./.github/workflows/linux-asan.yml
ubuntu-release-builds:
uses: ./.github/workflows/build-linux.yml
needs: check-licenses
with:
do_package: ${{ github.event_name == 'push' && true || false }}
retention_days: ${{ github.event_name == 'push' && 90 || 14 }}
windows-release-builds:
uses: ./.github/workflows/build-win.yml
needs: check-licenses
with:
do_package: ${{ github.event_name == 'push' && true || false }}
retention_days: ${{ github.event_name == 'push' && 90 || 14 }}