13 lines
300 B
Makefile
13 lines
300 B
Makefile
.PHONY: all build push
|
|
|
|
all: build
|
|
|
|
build:
|
|
git submodule update --init --remote
|
|
$(MAKE) -C JOJ3
|
|
cp JOJ3/build/joj3 bin/
|
|
docker build -t focs.ji.sjtu.edu.cn:5000/gitea/runner-images:focs-ubuntu-latest-slim .
|
|
|
|
push:
|
|
docker push focs.ji.sjtu.edu.cn:5000/gitea/runner-images:focs-ubuntu-latest-slim
|