diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index a2f23c6..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,38 +0,0 @@ -pipeline { - agent any - stages { - stage('Build') { - parallel { - stage('Build Linux') { - agent { - docker { - image 'alpine' - label 'docker' - alwaysPull true - } - } - steps { - echo "Running CI for Linux" - sh "apk add py3-tox" - sh "tox -q r -e ci" - sh "mv dist dist.linux" - archiveArtifacts artifacts: 'dist.linux', fingerprint: true - cleanWs cleanWhenAborted: false, cleanWhenFailure: false, cleanWhenNotBuilt: false, cleanWhenUnstable: false - } - } - stage('Build Windows') { - agent { - label 'windows' - } - steps { - echo "Running CI for Windows" - sh "tox -q r -e ci" - sh "mv dist dist.windows" - archiveArtifacts artifacts: 'dist.windows', fingerprint: true - cleanWs cleanWhenAborted: false, cleanWhenFailure: false, cleanWhenNotBuilt: false, cleanWhenUnstable: false - } - } - } - } - } -}