Skip to content

Commit

Permalink
ci: update ci versions and code coverage (#59)
Browse files Browse the repository at this point in the history
- update allowed Go range
- update to Ubuntu 18.04
- add codecov token

Signed-off-by: Troy Ronda <troy@troyronda.com>
  • Loading branch information
troyronda committed Mar 17, 2020
1 parent c47f8b4 commit 3e8998e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ci.properties
Expand Up @@ -6,4 +6,4 @@

GO_VER=1.12.5
GO_MIN_VER=1.12
GO_MAX_VER=1.13
GO_MAX_VER=1.14.99
8 changes: 5 additions & 3 deletions ci/azure-pipelines.yml
Expand Up @@ -16,7 +16,7 @@ variables:
jobs:
- job: UnitTest
pool:
vmImage: ubuntu-16.04
vmImage: ubuntu-18.04
dependsOn: []
timeoutInMinutes: 60
steps:
Expand All @@ -26,12 +26,14 @@ jobs:
# TODO: resolve dependencies between dependencies.sh and install_deps.yml
- script: make unit-test
displayName: Run checks and unit test
- script: bash <(curl https://codecov.io/bash)
- script: bash <(curl https://codecov.io/bash) -t $CODECOV_UPLOAD_TOKEN
env:
CODECOV_UPLOAD_TOKEN: $(CODECOV_UPLOAD_TOKEN)
displayName: Upload coverage to Codecov

- job: IntegrationTest
pool:
vmImage: ubuntu-16.04
vmImage: ubuntu-18.04
dependsOn: []
timeoutInMinutes: 60
steps:
Expand Down

0 comments on commit 3e8998e

Please sign in to comment.