Bump github.com/opencontainers/runc from 1.1.12 to 1.1.14 #216
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: [ master ] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run containerd-driver integration tests | |
run: | | |
# Remove older version of golang. | |
sudo rm -f /usr/bin/go | |
# Install golang-1.17 | |
export PATH=$PATH:/usr/local/go/bin | |
curl -s -L -o go1.17.linux-amd64.tar.gz https://dl.google.com/go/go1.17.linux-amd64.tar.gz | |
sudo tar -C /usr/local -xzf go1.17.linux-amd64.tar.gz | |
sudo chmod +x /usr/local/go | |
rm -f go1.17.linux-amd64.tar.gz | |
mkdir -p /home/runner/go/src/github.com/Roblox | |
ln -s /home/runner/work/nomad-driver-containerd/nomad-driver-containerd /home/runner/go/src/github.com/Roblox/nomad-driver-containerd | |
cd /home/runner/go/src/github.com/Roblox/nomad-driver-containerd | |
make test |