Skip to content

Commit cd8d91c

Browse files
committed
btrfs-progs: ci: add configure option build tests
Pre-release build checks are not yet done in the CI, so add a workflow for that and only for the release-test branch as this usually does not break and can take a long time due to the number of options (even with ccache). Signed-off-by: David Sterba <dsterba@suse.com>
1 parent a2649f8 commit cd8d91c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Build tests of various combinations of configure options
2+
# (pre-release tests)
3+
4+
name: Extended build tests
5+
run-name: Extended build tests
6+
on:
7+
push:
8+
branches:
9+
- release-test
10+
jobs:
11+
build:
12+
runs-on: ubuntu-24.04
13+
steps:
14+
- uses: actions/checkout@v4
15+
- run: sudo apt-get update -qqq
16+
- run: sudo apt-get install -y pkg-config gcc liblzo2-dev libzstd-dev libblkid-dev uuid-dev zlib1g-dev libext2fs-dev e2fsprogs libudev-dev python3-sphinx libaio-dev liburing-dev attr ccache
17+
- name: Run tests/build-tests.sh
18+
run: ./tests/build-tests.sh --ccache

0 commit comments

Comments
 (0)