[github] Switch to using Ubuntu 22.04 image to work around Python issue. #163
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
name: LLD Tests | |
permissions: | |
contents: read | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'release/**' | |
- 'dev/**' | |
- 'ci/**' | |
paths: | |
- 'lld/**' | |
- '.github/workflows/lld-tests.yml' | |
- '.github/workflows/llvm-project-tests.yml' | |
- '!llvm/**' | |
pull_request: | |
branches: | |
- 'release/**' | |
- 'dev/**' | |
- 'ci/**' | |
paths: | |
- 'lld/**' | |
- '.github/workflows/lld-tests.yml' | |
- '.github/workflows/llvm-project-tests.yml' | |
- '!llvm/**' | |
concurrency: | |
# Skip intermediate builds: always. | |
# Cancel intermediate builds: only if it is a pull request build. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
check_lld: | |
name: Test lld | |
uses: ./.github/workflows/llvm-project-tests.yml | |
with: | |
build_target: check-lld | |
projects: lld |