build(deps): bump styfle/cancel-workflow-action from 0.11.0 to 0.12.1 #57
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: linux-x64 | |
on: [push, pull_request] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
BUILD_DIR: linux-x64 | |
GITHUB_ACTION: true | |
jobs: | |
build: | |
runs-on: ${{ matrix.image }} | |
strategy: | |
matrix: | |
image: [ 'ubuntu-latest' ] | |
steps: | |
- name: cancel-previous-runs | |
uses: styfle/cancel-workflow-action@0.12.1 | |
with: | |
access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Install Ninja | |
id: ninja | |
uses: turtlesec-no/get-ninja@main | |
- name: Apt packages | |
shell: bash | |
run: | | |
sudo apt-get install libxrandr-dev -y | |
sudo apt-get install xorg-dev libglu1-mesa-dev -y | |
- name: cache-deps | |
id: cache-deps | |
uses: actions/cache@v3.3.1 | |
with: | |
path: deps | |
key: deps-linux-x64-v2 | |
- name: checkout-and-build-deps | |
if: steps.cache-deps.outputs.cache-hit != 'true' | |
shell: bash | |
run: | | |
pip3 install -r requirements.txt | |
python3 sledpkg_run.py | |
- name: Configure the project | |
working-directory: ${{github.workspace}}/build | |
run: cmake -S .. -B ${{env.BUILD_DIR}} -G Ninja | |
- name: Build | |
working-directory: ${{github.workspace}}/build | |
run: cmake --build ${{env.BUILD_DIR}} | |
- name: Test | |
working-directory: ${{github.workspace}}/build/${{env.BUILD_DIR}} | |
run: ctest -C ${{env.BUILD_TYPE}} --output-on-failure | |
- name: Install | |
working-directory: ${{github.workspace}}/build | |
run: cmake --install ${{env.BUILD_DIR}} | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: KantuCompareApp-${{runner.os}}-x64 | |
path: ${{github.workspace}}/build/${{env.BUILD_DIR}}/install |