From d7c3c4c383a2d35d02275d2d34063cafa04f9aac Mon Sep 17 00:00:00 2001 From: Eric Kolve Date: Mon, 26 Apr 2021 10:07:12 -0700 Subject: [PATCH 1/5] test --- tasks.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tasks.py b/tasks.py index 7263b89..eba71d6 100644 --- a/tasks.py +++ b/tasks.py @@ -1,4 +1,7 @@ from invoke import task + + + import subprocess import os import requests From 64306b2f99e271fbfffadef1b33e1ba19e8acf2d Mon Sep 17 00:00:00 2001 From: Eric Kolve Date: Mon, 26 Apr 2021 10:07:44 -0700 Subject: [PATCH 2/5] test --- tasks.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tasks.py b/tasks.py index eba71d6..4142977 100644 --- a/tasks.py +++ b/tasks.py @@ -1,7 +1,5 @@ from invoke import task - - import subprocess import os import requests From 2db21d58751343620f700b861ed3dc18f83ac38d Mon Sep 17 00:00:00 2001 From: Eric Kolve Date: Mon, 26 Apr 2021 10:10:35 -0700 Subject: [PATCH 3/5] test --- tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks.py b/tasks.py index 4142977..823d9b4 100644 --- a/tasks.py +++ b/tasks.py @@ -1,5 +1,6 @@ from invoke import task + import subprocess import os import requests From 5ba864d215d7a87ec1b06309e2370d525feb3a2f Mon Sep 17 00:00:00 2001 From: Eric Kolve Date: Thu, 15 Jul 2021 12:59:41 -0700 Subject: [PATCH 4/5] adding test build --- .travis.yml | 23 +++++++---------------- tasks.py | 5 +++++ 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index e8b0c91..6684942 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,20 +1,11 @@ +os: linux +arch: + - arm64 language: python python: - - '3.6' + - "3.6" install: - - pip install requests invoke -cache: pip + - pip install progressbar2 requests invoke boto3 aws-requests-auth jsonschema python-xlib script: - - python emit.py -git: - depth: 3 -deploy: - provider: script - script: bash build.sh - on: - tags: true - condition: $TRAVIS_TAG =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ -env: - global: - secure: VyGJAszOT/AWo2RZe7Yt3JlORQSXzMly4YR+C2Xl96W0TkhjpQcra0i38GXaudFWyu2dAK5LGdwzj3Epdux9/3g88vJd6Bit27F1aTbLFWqCSDJ4clsD5KE1HQO9807tdtxf6Z1BbmvtC9IfyCCXTMr9AXtyIdkHIKYuqSRbS6mA7ZgnN7DUgq3/Q14jkiZ2KGdhtYpOnaLPnt/8BfbsrxvXNRgBBrX4kDeF4R0mu9ZYQ7CT36rBFUTht1V82/8726OUc7YYH/Q3884ty0shJ9mz0sF5Smp9zzypjdB1aDFD5NNTKvdJ4puiDeUdHKtqS+xdbe8YaIqyfUXIzdywBcwT4I7hg2n21Etud2mnDA2K8bW/C22ur6dQiaYD0UeL93sKMW4tBN+M3QEwjpiNS34+kSAXXATkFfyz0UXlKzJlWvvvJ/68aumBVXIUnWjieIurjTjOIaJs6DyACDF/7CnZ5lGk8I6wSKWVV3KeQ3JDnM+i7SMNS3dkXpN2x7YwJk2udcfvQe1jGqJ1U3jHmaVlc4fBiRYG8Gp/rorO3Apsex3dz5tiSvF2gCY7Y6KiXoCk1oYT6QzEHGRT/0BUxW4PVEL6COzYayRubQsqdawc8nemgR+p1ydW0lUe3hR6xfXmpDqc3pcGjs8XMwvS9qXYqNpqIY7YNlgjzi/HOtI= - + - echo "hello" + - invoke poll-ci-build diff --git a/tasks.py b/tasks.py index 823d9b4..e434233 100644 --- a/tasks.py +++ b/tasks.py @@ -43,3 +43,8 @@ def deploy_pip(context): raise Exception("Twine token not specified in environment") subprocess.check_call("twine upload --repository testpypi -u __token__ dist/*", shell=True) +@task +def poll_ci_build(context): + print("HERE IN POLL CI BUILD") + + From 865fc0debdcbda8e52f23164980d386875d0bc9e Mon Sep 17 00:00:00 2001 From: Eric Kolve Date: Thu, 15 Jul 2021 13:02:58 -0700 Subject: [PATCH 5/5] adding test build --- tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks.py b/tasks.py index e434233..e42efde 100644 --- a/tasks.py +++ b/tasks.py @@ -48,3 +48,4 @@ def poll_ci_build(context): print("HERE IN POLL CI BUILD") +