-
Notifications
You must be signed in to change notification settings - Fork 20
102 lines (99 loc) · 3.07 KB
/
main.yml
File metadata and controls
102 lines (99 loc) · 3.07 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# The following configuration is used to setup GitHub Actions
# for building (and running unit tests) on pushes and PRs.
# At the moment, we build on two runner types: Linux and MacOS,
# specific version information can be found further below.
name: Build On Changes
on: [pull_request]
jobs:
build-ubuntu24:
runs-on: ubuntu-24.04
steps:
- name: Get HEAD and submodules
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: 'recursive'
- name: Install dependencies
run: |
sudo apt update
sudo apt install xsltproc -y
- name: Install sac2c
run: |
git clone --single-branch --recursive https://gitlab.sac-home.org/sac-group/sac2c.git
cd sac2c
make release -j2
cp build_p/sac2c_p /usr/local/bin/sac2c
sac2c -V
- name: Create build dir
run: |
cmake -E make_directory ${{runner.workspace}}/build
- name: Configure build-system
shell: bash
working-directory: ${{runner.workspace}}/build
run: cmake -DLINKSETSIZE=200 $GITHUB_WORKSPACE
- name: Build
shell: bash
working-directory: ${{runner.workspace}}/build
run: |
cmake --build . -j4 2>&1 | tee build.log
if [ ${PIPESTATUS[0]} -ne 0 ]; then
echo "!!! ERROR detected in build !!!";
exit 1;
fi
${GITHUB_WORKSPACE}/ci/fail-on-warning.sh build.log
- name: Test
shell: bash
working-directory: ${{runner.workspace}}/build
run: |
git clone --single-branch https://github.com/SacBase/IntegrationTests.git
cd IntegrationTests
make all
./test.sh
build-macos-arm:
runs-on: macos-latest
steps:
- name: Get HEAD and submodules
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: 'recursive'
- name: Install dependencies
run: |
brew update
brew install libxslt
- name: Set XCode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Install sac2c
run: |
git clone --single-branch --recursive https://gitlab.sac-home.org/sac-group/sac2c.git
cd sac2c
make release -j2
cp build_p/sac2c_p /usr/local/bin/sac2c
sac2c -V
- name: Create build dir
run: |
cmake -E make_directory ${{runner.workspace}}/build
- name: Configure build-system
shell: bash
working-directory: ${{runner.workspace}}/build
run: cmake ${GITHUB_WORKSPACE}
- name: Build
shell: bash
working-directory: ${{runner.workspace}}/build
run: |
cmake --build . -j3 2>&1 | tee build.log
if [ ${PIPESTATUS[0]} -ne 0 ]; then
echo "!!! ERROR detected in build !!!";
exit 1;
fi
${GITHUB_WORKSPACE}/ci/fail-on-warning.sh build.log
- name: Test
shell: bash
working-directory: ${{runner.workspace}}/build
run: |
git clone --single-branch https://github.com/SacBase/IntegrationTests.git
cd IntegrationTests
make all
./test.sh