We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92a3c4a commit 403181dCopy full SHA for 403181d
.travis.yml
@@ -5,4 +5,9 @@ jobs:
5
include:
6
- stage: check_release_steps
7
scripts: "./.travis/check_release_step.sh"
8
-
+ - stage: build
9
+ scripts: "./.travis/build.sh"
10
+addons:
11
+ artifacts:
12
+ working_dir: dist/
13
+ target_paths: ${ARTIFACTS_JOB_ID}/${TRAVIS_OS_NAME}/${TRAVIS_COMMIT:0:8}
.travis/build.sh
@@ -0,0 +1,7 @@
1
+#!/usr/bin/env bash
2
+
3
+echo "Building version $(python setup.py --version)"
4
+pip install dist/gs_api_client-$(python setup.py --version).tar.gz
+echo "Building Done"
0 commit comments