From e6a79c60eb9140f84bd2a1f18a05a989085e9535 Mon Sep 17 00:00:00 2001 From: Todd Underwood Date: Wed, 28 Oct 2020 10:14:37 -0700 Subject: [PATCH 1/3] first attemt at github actions instead of travis --- .github/workflows/test-github-actions.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/test-github-actions.yml diff --git a/.github/workflows/test-github-actions.yml b/.github/workflows/test-github-actions.yml new file mode 100644 index 00000000..1572ab34 --- /dev/null +++ b/.github/workflows/test-github-actions.yml @@ -0,0 +1,11 @@ +name: test-github-actions +on: [push] +jobs: + build-referee: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + - run: sudo apt-get -qq update + - run: sudo apt-get install -y oathtool + - run: yarn prepare-artifacts \ No newline at end of file From ee63c68fa77cdfcf72a893b741168455a837734a Mon Sep 17 00:00:00 2001 From: Todd Underwood Date: Wed, 11 Nov 2020 09:36:28 -0800 Subject: [PATCH 2/3] feat: Removed Travis config and updated the readme badge --- .../{test-github-actions.yml => build-on-push.yml} | 2 +- .travis.yml | 8 -------- README.md | 2 ++ 3 files changed, 3 insertions(+), 9 deletions(-) rename .github/workflows/{test-github-actions.yml => build-on-push.yml} (90%) delete mode 100644 .travis.yml diff --git a/.github/workflows/test-github-actions.yml b/.github/workflows/build-on-push.yml similarity index 90% rename from .github/workflows/test-github-actions.yml rename to .github/workflows/build-on-push.yml index 1572ab34..c5058a58 100644 --- a/.github/workflows/test-github-actions.yml +++ b/.github/workflows/build-on-push.yml @@ -1,4 +1,4 @@ -name: test-github-actions +name: Build on: [push] jobs: build-referee: diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 6167ae72..00000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: node_js -dist: xenial -before_install: - - sudo apt-get -qq update - - sudo apt-get install -y oathtool - -script: - - yarn prepare-artifacts \ No newline at end of file diff --git a/README.md b/README.md index 89d9ba4e..718f0fdc 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ Referee Logo + + Referee is a user interface for using Spinnaker's Kayenta, a platform for Automated Canary Analysis (ACA), as a standalone service. Referee is very much inspired by the Spinnakers official UI (Deck). From c341af70fd30a222f0775aaa65f5ab7df17a56c4 Mon Sep 17 00:00:00 2001 From: Todd Underwood Date: Wed, 11 Nov 2020 09:42:32 -0800 Subject: [PATCH 3/3] chore: fix the build badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 718f0fdc..10fc692a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ Referee Logo - + Referee is a user interface for using Spinnaker's Kayenta, a platform for Automated Canary Analysis (ACA), as a standalone service.