summaryrefslogtreecommitdiff
path: root/simulator/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to 'simulator/.gitlab-ci.yml')
-rw-r--r--simulator/.gitlab-ci.yml34
1 files changed, 0 insertions, 34 deletions
diff --git a/simulator/.gitlab-ci.yml b/simulator/.gitlab-ci.yml
deleted file mode 100644
index a095f7e7..00000000
--- a/simulator/.gitlab-ci.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-image: gradle:6.1-jdk13
-
-variables:
- GRADLE_OPTS: "-Dorg.gradle.daemon=false"
-
-before_script:
- - export GRADLE_USER_HOME=`pwd`/.gradle
-
-stages:
- - build
- - test
-
-build:
- stage: build
- script:
- - gradle --build-cache assemble
- allow_failure: false
- cache:
- key: "$CI_COMMIT_REF_NAME"
- policy: push
- paths:
- - build
- - .gradle
-
-test:
- stage: test
- script:
- - gradle check
- cache:
- key: "$CI_COMMIT_REF_NAME"
- policy: pull
- paths:
- - build
- - .gradle