Skip to content

Commit

Permalink
Merge pull request #322 from haircommander/go-1.17
Browse files Browse the repository at this point in the history
ci: bump to go 1.17
  • Loading branch information
rhatdan authored Jan 21, 2022
2 parents e2215a1 + e827355 commit 1688da5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.16'
go-version: '1.17'
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
Expand All @@ -29,7 +29,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.16'
go-version: '1.17'
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
Expand All @@ -41,7 +41,7 @@ jobs:
- run: hack/github-actions-setup
- name: Run conmon integration tests
run: |
make vendor
sudo make vendor
sudo mkdir -p /var/run/crio
sudo make test-binary
Expand All @@ -50,7 +50,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.16'
go-version: '1.17'
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
Expand All @@ -74,7 +74,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.16'
go-version: '1.17'
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
Expand All @@ -90,7 +90,8 @@ jobs:
export PATH=${GOROOT}/bin:$PATH
git clone https://github.com/containers/podman
cd podman
make bin/podman
make vendor
make
sudo -E ginkgo \
-skip 'run.apparmor.disabled|image.trust.show.--json|run.network.bind.to.HostIP' \
-noColor \
Expand All @@ -101,7 +102,7 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.16'
go-version: '1.17'
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
Expand All @@ -117,5 +118,5 @@ jobs:
export PATH=${GOROOT}/bin:$PATH
git clone https://github.com/containers/podman
cd podman
make bin/podman
make && sudo make install
sudo -E make localsystem
3 changes: 2 additions & 1 deletion hack/kubernetes-e2e
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ systemctl is-active --quiet crio && echo CRI-O is running
journalctl --no-pager -u crio

# Start Kubernetes
GOROOT="$GOROOT_1_16_X64"
GOROOT="$GOROOT_1_17_X64"
GOPATH="$HOME/go"
PATH="$GOROOT/bin:$PATH"
K8SPATH="$GOPATH/src/k8s.io"
Expand Down Expand Up @@ -89,6 +89,7 @@ export PATH="$GOPATH/src/k8s.io/kubernetes/_output/local/bin/linux/amd64:$PATH"
export KUBE_MASTER_URL=$IP
export KUBE_MASTER_IP=$IP
export KUBE_MASTER=$IP
export HOSTNAME_OVERRIDE=$IP

export GINKGO_PARALLEL_NODES=4
export GINKGO_PARALLEL=y
Expand Down

0 comments on commit 1688da5

Please sign in to comment.