Test mostly on docker latest tag
This commit is contained in:
parent
c26d355fed
commit
d116b90c88
15
Makefile
15
Makefile
|
|
@ -1,6 +1,6 @@
|
|||
.SILENT:
|
||||
SCHEME=chibi
|
||||
DOCKER_TAG=head
|
||||
DOCKER_TAG=latest
|
||||
RNRS=r7rs
|
||||
LIBRARY=system
|
||||
AUTHOR=Retropikzel
|
||||
|
|
@ -24,6 +24,19 @@ TESTFILE=retropikzel/${LIBRARY}/test.scm
|
|||
|
||||
PKG=retropikzel-${LIBRARY}-${VERSION}.tgz
|
||||
|
||||
ifeq "${SCHEME}" "capyscheme"
|
||||
DOCKER_TAG=head
|
||||
endif
|
||||
ifeq "${SCHEME}" "chibi"
|
||||
DOCKER_TAG=head
|
||||
endif
|
||||
ifeq "${SCHEME}" "chicken"
|
||||
DOCKER_TAG=head
|
||||
endif
|
||||
ifeq "${SCHEME}" "gauche"
|
||||
DOCKER_TAG=head
|
||||
endif
|
||||
|
||||
all: package
|
||||
|
||||
package: retropikzel/${LIBRARY}/VERSION retropikzel/${LIBRARY}/README.md retropikzel/${LIBRARY}/LICENSE
|
||||
|
|
|
|||
Loading…
Reference in New Issue