75ae584e6d
Switch to the "installed" model introduced by: https://github.com/coreos/coreos-assembler/pull/1441 It's hard to support running tests *both* from the srcdir and installed; in this case because we have a symlink that needs to be followed, which kola knows how to do from the srcdir but not when installed. Let's establish a new convention of `tests/kolainst`. In our case we follow the symlink manually for now. That bit will be cleaned up when we eventually switch entirely to kola tests.
14 lines
327 B
Makefile
14 lines
327 B
Makefile
DESTDIR ?=
|
|
|
|
TESTDIRS := $(shell find -mindepth 1 -maxdepth 1 -type d)
|
|
|
|
KOLA_TESTDIR = $(DESTDIR)/usr/lib/coreos-assembler/tests/kola/rpm-ostree/
|
|
|
|
all:
|
|
@echo "No build step"
|
|
|
|
install:
|
|
install -d -m 0755 $(KOLA_TESTDIR)
|
|
rsync -prlv ./nondestructive $(KOLA_TESTDIR)/
|
|
rsync -prlv ../common/ $(KOLA_TESTDIR)/nondestructive/data
|