Skip to content

Commit 200a7f4

Browse files
author
Paul Dreik
committed
add debian bookworm test to CI
1 parent 596b599 commit 200a7f4

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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'

0 commit comments

Comments
 (0)