summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2020-07-09 15:43:09 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2020-08-24 19:48:03 +0200
commitba99e8f03ba8605deccac12b8c91cab94509dd94 (patch)
treee0589da4b241f6f766c51bb396692e713facc2e4
parenta76545d600efcd6baea1d4e170fc8360382588c4 (diff)
Remove unnecessary dotfiles
This change removes configuration files (e.g. Travis CI and Gitlab CI) in the simulator directory which have become unnecessary due to the migration to a monorepo.
-rw-r--r--simulator/.gitattributes7
-rw-r--r--simulator/.gitlab-ci.yml34
-rw-r--r--simulator/.travis.yml1
3 files changed, 0 insertions, 42 deletions
diff --git a/simulator/.gitattributes b/simulator/.gitattributes
deleted file mode 100644
index 12924725..00000000
--- a/simulator/.gitattributes
+++ /dev/null
@@ -1,7 +0,0 @@
-# https://help.github.com/articles/dealing-with-line-endings/
-#
-# These are explicitly windows files and should use crlf
-*.bat text eol=crlf
-
-# See https://github.com/gradle/gradle/issues/12248
-buildSrc/src/main/**/*.gradle.kts text eol=lf
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
diff --git a/simulator/.travis.yml b/simulator/.travis.yml
deleted file mode 100644
index dff5f3a5..00000000
--- a/simulator/.travis.yml
+++ /dev/null
@@ -1 +0,0 @@
-language: java