-
Notifications
You must be signed in to change notification settings - Fork 0
123 lines (107 loc) · 2.73 KB
/
build.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
---
on:
workflow_dispatch:
push:
paths-ignore:
- 'debian/**'
- 'doc/**'
- 'subprojects/**'
branches:
- master
pull_request:
paths-ignore:
- 'debian/**'
- 'doc/**'
- 'subprojects/**'
branches:
- master
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build:
runs-on: ubuntu-24.04
steps:
- id: checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
openssh-client openssh-sftp-server \
dropbear-bin \
python3-paramiko \
ruby-net-ssh \
meson \
ccache \
nlohmann-json3-dev \
libfmt-dev \
libgtest-dev \
libcap-dev \
libseccomp-dev \
libssl-dev \
libsystemd-dev \
libavahi-client-dev \
libmd-dev \
libsodium-dev
- id: cache-ccache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{github.job}}
- name: Configure
run: |
meson setup \
-Dauto_features=enabled \
-Ddocumentation=disabled \
-Dtest=true \
-Dwrap_mode=nofallback \
output
- name: Build
run: ninja -C output -v
- name: Unit Tests
run: meson test -C output
- name: Dump Unit Test Log
if: ${{ failure() }}
continue-on-error: true
run: cat output/meson-logs/testlog.txt
- name: Connect Tests
run: ./test/test_lukko.py output
mini:
runs-on: ubuntu-24.04
steps:
- id: checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
meson \
ccache \
libfmt-dev \
libgtest-dev \
libsodium-dev
- id: cache-ccache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{github.job}}
- name: Configure
run: |
meson setup \
-Dauto_features=disabled \
-Dtest=true \
-Dtranslation=false \
-Dcontrol=false \
-Dpond=false \
-Dwrap_mode=nofallback \
output
- name: Build
run: ninja -C output -v
- name: Unit Tests
run: meson test -C output
- name: Dump Unit Test Log
if: ${{ failure() }}
continue-on-error: true
run: cat output/meson-logs/testlog.txt