ARM CI #9
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
# Workflow syntax: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
name: unit-test-checker-arm | |
on: | |
pull_request: | |
paths-ignore: "docs/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit-tests-llvm-18-release-salami: | |
runs-on: ARM64 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
submodules: 'recursive' | |
- name: Run unit test checking script | |
run: ./scripts/unit_tests.sh release llvm-18 | |
shell: bash |