removed pipelines configuration

This commit is contained in:
DTop
2020-02-28 16:28:14 -05:00
parent eaadc6c3d1
commit 1f3a0db03b
2 changed files with 0 additions and 23 deletions

View File

@@ -1,9 +0,0 @@
#!/bin/bash
sed -i~ "/<servers>/ a\
<server>\
<id>io.cloudrepo</id>\
<username>${CLOUDREPO_USERNAME}</username>\
<password>${CLOUDREPO_PASSPHRASE}</password>\
</server>" /usr/share/maven/conf/settings.xml

View File

@@ -1,14 +0,0 @@
image: maven:3.6.1
pipelines:
branches:
master: # Trigger this for any pushes to the master branch.
- step:
name: Build and Deploy Snapshot Artifact
trigger: automatic
caches:
- maven # Cache any dependencies we download, speeds up build times.
script:
- bash base-build/configure_maven.sh # Create our settings.xml file. Will fail if environment variables aren't set properly.
- mvn -B --file base-build/pom.xml verify # Ensure all artifacts build successfully before we attempt deploy in order to prevent partial deploys.
- mvn -B --file base-build/pom.xml deploy # Now that all builds have completed, we can deploy all the artifacts.