-
Notifications
You must be signed in to change notification settings - Fork 24
52 lines (42 loc) · 1.86 KB
/
test-wsl.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
49
50
51
52
name: Test WSL Environment
on:
push:
branches:
- master
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: wsl-bash {0}
steps:
- uses: actions/checkout@v2
- uses: Vampire/setup-wsl@v1
with:
distribution: Ubuntu-20.04
- name: Install g++ gcc
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
run: sudo apt update && sudo apt install -y cmake g++ gcc
- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
working-directory: ${{github.workspace}}
run: cmake -E make_directory build
- name: Configure CMake
working-directory: ${{github.workspace}}/build
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++
- name: Build
working-directory: ${{github.workspace}}/build
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build . --config Release
- name: Test
working-directory: ${{github.workspace}}/build
# Execute the build. You can specify a specific target with "--target <NAME>"
run: ./app/kens/test-kens-all-run-solution
- name: Test (Unreliable)
working-directory: ${{github.workspace}}/build
run: ./app/kens/test-kens-all-unreliable-run-solution