-
Notifications
You must be signed in to change notification settings - Fork 4
59 lines (55 loc) · 2.1 KB
/
installArtifacts.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
53
54
55
56
57
58
59
name: Binaries Compilation
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
binCompile:
strategy:
# max-parallel: 4
matrix:
name: [ubuntu-gcc-static, ubuntu-clang-static, windows-VS-static,ubuntu-gcc-shared, ubuntu-clang-shared, windows-VS-shared]
include:
- name: ubuntu-gcc-static
os: ubuntu-latest
compiler_opt: "-DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -G \"Unix Makefiles\""
lib_opt: ""
- name: ubuntu-clang-static
os: ubuntu-latest
compiler_opt: "-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -G \"Unix Makefiles\""
lib_opt: ""
- name: windows-VS-static
os: windows-latest
compiler_opt: ""
lib_opt: ""
- name: ubuntu-gcc-shared
os: ubuntu-latest
compiler_opt: "-DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -G \"Unix Makefiles\""
lib_opt: "-DLIB_OPT=ON"
- name: ubuntu-clang-shared
os: ubuntu-latest
compiler_opt: "-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -G \"Unix Makefiles\""
lib_opt: "-DLIB_OPT=ON"
- name: windows-VS-shared
os: windows-latest
compiler_opt: ""
lib_opt: "-DLIB_OPT=ON"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2.0.0
- name: Checkout submodules
run: git submodule update --init --recursive
- name: CMake configure
run: cmake -B./build -DCMAKE_INSTALL_PREFIX:STRING=./artifacts/ -DBUILD_EFG_SAMPLES=OFF -DCMAKE_CONFIGURATION_TYPES="Release" -DCMAKE_BUILD_TYPE:STRING=Release ${{ matrix.compiler_opt }} ${{ matrix.lib_opt }}
- name: build release
run: cmake --build ./build --config Release
- name: Install artifacts
run: cmake --install ./build --config Release
- uses: actions/upload-artifact@v2
with:
path: artifacts
name: ${{ matrix.name }}