Skip to content

Commit 3640a62

Browse files
committed
ci: Enable all features
Signed-off-by: Colin Walters <[email protected]>
1 parent 44527ee commit 3640a62

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,18 @@ prefix ?= /usr
33
all:
44
cargo build --release
55

6+
all-test:
7+
cargo build --release --all-features
8+
69
install:
710
install -D -t $(DESTDIR)$(prefix)/bin target/release/bootc
811

912
bin-archive: all
1013
$(MAKE) install DESTDIR=tmp-install && tar --zstd -C tmp-install -cf bootc.tar.zst . && rm tmp-install -rf
1114

15+
test-bin-archive: all-test
16+
$(MAKE) install DESTDIR=tmp-install && tar --zstd -C tmp-install -cf bootc.tar.zst . && rm tmp-install -rf
17+
1218
install-kola-tests:
1319
install -D -t $(DESTDIR)$(prefix)/lib/coreos-assembler/tests/kola/bootc tests/kolainst/*
1420

ci/Dockerfile.fcos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
FROM quay.io/coreos-assembler/fcos-buildroot:testing-devel as builder
44
WORKDIR /src
55
COPY . .
6-
RUN make bin-archive
6+
RUN make test-bin-archive
77

88
FROM quay.io/fedora/fedora-coreos:testing-devel
99
COPY --from=builder /src/bootc.tar.zst /tmp

0 commit comments

Comments
 (0)