-
Notifications
You must be signed in to change notification settings - Fork 7
107 lines (94 loc) · 3.02 KB
/
libfolia.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
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
103
104
105
106
107
---
name: C/C++ CI
on:
schedule:
- cron: "0 20 4 * *" # Run monthly, at 20:00 on the 4th day of month.
push:
branches:
- master
- develop
paths:
- configure.ac
- 'src/**'
- 'include/**'
- .github/workflows/libfolia.yml
pull_request:
branches: [master]
jobs:
notification:
runs-on: ubuntu-latest
name: Notify start to gitlama
steps:
- name: IRC notification
uses: LanguageMachines/ticcactions/irc-init@v1
build:
needs: notification
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
compiler: [g++-12, clang++]
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/[email protected]
- uses: LanguageMachines/ticcactions/cpp-build-env@v1
- uses: LanguageMachines/ticcactions/cpp-dependencies@v1
- uses: LanguageMachines/ticcactions/setup-cppcheck@v1
- uses: LanguageMachines/ticcactions/irc-nick@v1
- uses: LanguageMachines/ticcactions/cpp-submodule-build@v1
with:
module: ticcutils
- name: Static Code-check
if: ${{ env.action_status == '' }}
run: cppcheck ${{ env.cpc_opts }} .
- uses: LanguageMachines/ticcactions/cpp-safe-build@v1
- name: Notify IRC of build results
uses: LanguageMachines/ticcactions/irc-status@v1
with:
branch: ${{ github.ref_name }}
nickname: ${{ env.nick }}
status: ${{ env.action_status }}
details: ${{ env.action_details }}
continue-on-error: true
- name: install foliatest
uses: LanguageMachines/ticcactions/cpp-submodule-build@v1
with:
module: foliatest
branch: ${{ github.ref_name }}
# so for develop builds, also test the develop branch of foliatest
- name: install FoliaPY
if: ${{ env.action_status == '' }}
run: |
git clone https://github.com/proycon/foliapy;
cd foliapy;
# get folia-repo with examples
git submodule init && git submodule update;
cd ..
- name: run foliatests
id: foliatests
if: ${{ env.action_status == '' }}
env:
FOLIAPATH: ../foliapy/folia-repo
EXPECT: 0
LD_LIBRARY_PATH: $LD_LIBRARY_PATH:/usr/local/lib
run: |
cd foliatest;
./src/testaction.sh;
TEST_STAT=$(cat status.tmp)
if [ $TEST_STAT != 0 ]
then
echo "action_status=foliatests" >> $GITHUB_ENV
fi
echo "action_details=$TEST_STAT errors" >> $GITHUB_ENV
continue-on-error: true
- name: Notify IRC of end result
uses: LanguageMachines/ticcactions/irc-status@v1
with:
branch: ${{ github.ref_name }}
nickname: ${{ env.nick }}
step: testing
status: ${{ env.action_status }}
details: ${{ env.action_details }}