mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-10 05:18:30 +03:00
46a0911c6d
rust-analyzer is happier with this because it understands the project structure out of the box. We aren't actually again adding a dependency on Rust/cargo in the core, this is only used to make `cargo build` work out of the box to build the Rust test code.
18 lines
688 B
Makefile
18 lines
688 B
Makefile
DESTDIR ?=
|
|
|
|
TESTDIRS := $(shell find -mindepth 1 -maxdepth 1 -type d)
|
|
LIBSCRIPTS := $(shell ls *.sh)
|
|
|
|
KOLA_TESTDIR = $(DESTDIR)/usr/lib/coreos-assembler/tests/kola/ostree/
|
|
|
|
all:
|
|
for x in $(LIBSCRIPTS); do bash -n "$${x}"; done
|
|
(cd ../inst && cargo run --release -- list-destructive) > destructive-list.txt
|
|
|
|
install:
|
|
install -D -m 0644 -t $(KOLA_TESTDIR) $(LIBSCRIPTS)
|
|
for x in $(TESTDIRS); do rsync -rlv ./$${x} $(KOLA_TESTDIR)/; done
|
|
install -D -m 0755 -t $(KOLA_TESTDIR)/nondestructive-rs ../../target/release/ostree-test
|
|
install -D -m 0644 destructive-stamp.ign $(KOLA_TESTDIR)/destructive-rs/config.ign
|
|
./install-wrappers.sh destructive-list.txt $(KOLA_TESTDIR)/destructive-rs
|