File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ name : debian bookworm
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ - devel
8+ pull_request :
9+
10+
11+ jobs :
12+ container-test-job :
13+ runs-on : ubuntu-latest
14+ container :
15+ image : debian:bookworm-slim
16+ steps :
17+ - name : checkout
18+ uses : actions/checkout@v4
19+ - name : install packages
20+ run : apt-get update && apt-get install autoconf build-essential nettle-dev libcap2-bin --yes
21+ - name : bootstrap
22+ run : ./bootstrap.sh
23+ - name : configure
24+ run : ./configure --enable-warnings CXXFLAGS=-std=c++11
25+ - name : make
26+ run : make
27+ - name : make check
28+ run : make check
29+ - name : make distcheck
30+ run : make distcheck CXXFLAGS=-std=c++11
31+ - name : store the logs as an artifact
32+ if : ${{ always() }}
33+ uses : actions/upload-artifact@v4
34+ with :
35+ path : ' **/*.log'
You can’t perform that action at this time.
0 commit comments