-
Notifications
You must be signed in to change notification settings - Fork 4
35 lines (28 loc) · 749 Bytes
/
Copy pathLinux.yml
File metadata and controls
35 lines (28 loc) · 749 Bytes
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
name: Linux
on:
push:
paths-ignore:
- '*/README.md'
- 'LICENSE'
pull_request:
paths-ignore:
- '*/README.md'
- 'LICENSE'
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .
# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
BUILD_CONFIGURATION: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
shell: pwsh
run: |
mkdir build && cd build
cmake ..
cmake --build . --config Release