-
Notifications
You must be signed in to change notification settings - Fork 45
48 lines (38 loc) · 1.16 KB
/
ubuntu-cmake.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: linux-build
on: [push, pull_request]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@v4
- name: Install ninja-build tool
uses: turtlesec-no/[email protected]
- name: Create Build Environment
env:
RUNNER_WORKSPACE: ${{ runner.workspace }}
working-directory: ${{ github.workspace }}
run: |
cmake -E make_directory "${RUNNER_WORKSPACE}/build"
- name: Configure CMake
working-directory: ${{ runner.workspace }}/build
run: |
cmake "${GITHUB_WORKSPACE}" -G Ninja \
"-DCMAKE_BUILD_TYPE=${BUILD_TYPE}"
- name: Build
working-directory: ${{ runner.workspace }}/build
run: cmake --build . --config "${BUILD_TYPE}"
- name: Test
working-directory: ${{ runner.workspace }}/build
run: ctest --build-config "${BUILD_TYPE}" --output-on-failure
- name: Upload Build Artifacts
uses: actions/[email protected]
with:
name: pawn-${{ runner.os }}
path: |
${{ runner.workspace }}/build/pawn/pawn