CI: Unify pipelines for GitLab and GitHub #31
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
name: Test build (no VLA) | |
on: [pull_request] | |
jobs: | |
test-build-novla: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Install build tools | |
run: sudo apt install build-essential cmake | |
shell: bash | |
- uses: actions/checkout@v4 | |
with: | |
# Assume that there are not >200 new commits that need checking | |
fetch-depth: 200 | |
submodules: 'recursive' | |
# Don't create a merge commit | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Test build (no VLA) | |
run: bash ./.ci/test_build_novla.sh | |
shell: bash |