From d84405ba5307ced79d0d6cfb3e7716b5a1596599 Mon Sep 17 00:00:00 2001 From: Stefan de Konink Date: Wed, 8 Sep 2021 11:20:49 +0200 Subject: [PATCH] Remove .circleci as per request #98 --- .circleci/config.yml | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index fdbd1dce5..000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,43 +0,0 @@ -version: 2 -aliases: -- &post_build - name: Trigger downstream builds - command: | - echo 'export CIRCLE_SHA1="$CIRCLE_SHA1"' >> $BASH_ENV - echo 'export CIRCLE_PROJECT_REPONAME="$CIRCLE_PROJECT_REPONAME"' >> $BASH_ENV - echo 'export GITHUB_TOKEN="$GITHUB_TOKEN"' >> $BASH_ENV - /tools/trigger_build.sh "entur/netex-java-model.git" "master" "$(git log -1 --pretty=%B)" -jobs: - build: - docker: - - image: eu.gcr.io/carbon-1287/circleci-toolbox-image - auth: - username: _json_key - password: $GCLOUD_SERVICE_KEY - steps: - - checkout - - run: echo "Running xmllint to validate schema" - - run: xmllint --noout --schema xsd/NeTEx_publication.xsd examples/functions/stopPlace/Netex_01_StopPoints_NoFrills_1.xml - - run: echo "Finished running xmllint" - trigger-dependants: - docker: - - image: eu.gcr.io/carbon-1287/circleci-toolbox-image - auth: - username: _json_key - password: $GCLOUD_SERVICE_KEY - steps: - - run: *post_build -workflows: - version: 2 - install-validate: - jobs: - - build: - context: org-carbon - - trigger-dependants: - context: org-carbon - requires: - - build - filters: - branches: - only: - - master