diff --git a/ci/_set_pipeline.sh b/ci/_set_pipeline.sh deleted file mode 100755 index 1bd568f79..000000000 --- a/ci/_set_pipeline.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -if [ "$#" -ne 1 ]; then - echo "Unable to parse target. Run fly targets to check for what this could be." - exit -1 -fi - -fly -t "$1" sp -c ./ci/pipelines/pipeline.yml -p multiverse-core diff --git a/ci/pipelines/pipeline.yml b/ci/pipelines/pipeline.yml deleted file mode 100644 index 6cccd89f9..000000000 --- a/ci/pipelines/pipeline.yml +++ /dev/null @@ -1,46 +0,0 @@ ---- -# We care when the source, ci/scripts, and ci/tasks code changes. -resources: - - name: main - icon: github - type: git - source: - paths: - - src/** - - ci/scripts/** - - ci/tasks/** - branch: main - uri: https://github.com/dumptruckman/multiverse-core-testing - -groups: - - name: deployments - jobs: - # - unit-tests - - package - -jobs: - - ##################### - ## TESTING ## - ##################### - # commented out due to kernel bug - # - name: unit-tests - # serial_groups: [staging] - # plan: - # - get: gls-api-src - # trigger: true - # - task: unit-tests - # file: gls-api-src/ci/tasks/unit-tests.yml - - ##################### - ## BUILD ## - ##################### - - - name: package - build_logs_to_retain: 50 - plan: - - get: main - trigger: true - # passed: [unit-tests] - - task: maven-package - file: ./ci/tasks/maven-package.yml \ No newline at end of file diff --git a/ci/tasks/maven-package.yml b/ci/tasks/maven-package.yml deleted file mode 100644 index aca5cd5d4..000000000 --- a/ci/tasks/maven-package.yml +++ /dev/null @@ -1,36 +0,0 @@ ---- -# A task to build a Docker image for a Java app with Jib - -# Task definition - -platform: linux -container_limits: {} - -# Use the 'maven:3.6.3' image from Docker Hub -image_resource: - type: registry-image - source: - repository: maven - tag: 3.6.3 - -# Cache Maven artifacts so we don't download the internet again -# Caches are scoped to a particular task name inside of a pipeline's job. -caches: - - path: $HOME/.m2/repository - -# We will provide an input called 'git' to this Task -# This causes Concourse to git checkout a specific commit. -# It also allows us to execute this step independently, for a specific Git commit. -# However, the parent pipeline only runs this task when the previous 'unit' job has passed. -inputs: - - name: main - -outputs: - - name: jar - -run: - path: /bin/sh - args: - - -c - - | - mvn -B -f main/pom.xml package \ No newline at end of file