Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add artifacts uploading #143

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v1
with:
go-version: 1.13.4
go-version: 1.16
- run: go mod tidy
- name: Check for changes in go.mod or go.sum
run: |
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
access_token: ${{ github.token }}
- uses: actions/setup-go@v1
with:
go-version: 1.15
go-version: 1.16
github-token: ${{ github.token }}
- name: Set go env
run: |
Expand All @@ -117,6 +117,13 @@ jobs:
run: |
go test -count 1 -timeout 20m -race -v ./...
working-directory: ${{ github.workspace }}/src/github.com/${{ github.repository }}
- name: Upload artifacts
if: ${{ success() || failure() || cancelled() }}
uses: actions/upload-artifact@v2
with:
name: Containers logs
path: ${{ github.workspace }}/src/github.com/${{ github.repository }}/logs

update-dependent-repositories:
continue-on-error: true
strategy:
Expand Down Expand Up @@ -149,7 +156,7 @@ jobs:
cat /tmp/commit-message
- uses: actions/setup-go@v1
with:
go-version: 1.15
go-version: 1.16
- name: Get current integration-tests version
id: get-integration-tests-version
working-directory: ${{ github.repository }}
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/networkservicemesh/integration-k8s-kind

go 1.15
go 1.16

require (
github.com/networkservicemesh/integration-tests v0.0.0-20210326114021-23ec6a606230
github.com/stretchr/testify v1.6.1
github.com/networkservicemesh/integration-tests v0.0.0-20210326205537-1d0724948111
github.com/stretchr/testify v1.7.0
)
Loading