diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..6a5628b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ +variables: + GIT_SUBMODULE_STRATEGY: recursive + +stages: + - build + +build hw: + stage: build + tags: + - efinity + - linux + script: + - source init_env.sh + - make hw + diff --git a/Makefile b/Makefile index 5429b4b..7b9cb5d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,7 @@ -all: +all: hw + +.PHONY: hw +hw: $(MAKE) -C hw .PHONY: clean