-
Notifications
You must be signed in to change notification settings - Fork 626
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a canary CI target to test against upcoming / unreleased versions
Signed-off-by: apostasie <[email protected]>
- Loading branch information
Showing
5 changed files
with
557 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# This pipeline purpose is solely meant to run a subset of our test suites against upcoming or unreleased dependencies versions | ||
name: test-canary | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- 'release/**' | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
|
||
env: | ||
UBUNTU_VERSION: "24.04" | ||
# Windows install script can only set released versions | ||
CONTAINERD_VERSION_WINDOWS: "2.0.0-rc.3" | ||
|
||
jobs: | ||
linux: | ||
runs-on: "ubuntu-24.04" | ||
timeout-minutes: 40 | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 1 | ||
- name: "Prepare integration test environment" | ||
run: | | ||
./hack/build-integration-canary.sh | ||
- name: "Remove snap loopback devices (conflicts with our loopback devices in TestRunDevice)" | ||
run: | | ||
sudo systemctl disable --now snapd.service snapd.socket | ||
sudo apt-get purge -y snapd | ||
sudo losetup -Dv | ||
sudo losetup -lv | ||
- name: "Register QEMU (tonistiigi/binfmt)" | ||
run: docker run --privileged --rm tonistiigi/binfmt --install all | ||
- name: "Run unit tests" | ||
run: go test -v ./pkg/... | ||
- name: "Run integration tests" | ||
continue-on-error: true | ||
run: docker run -t --rm --privileged test-integration | ||
|
||
windows: | ||
runs-on: windows-latest | ||
timeout-minutes: 30 | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- name: Set GO env | ||
run: | | ||
# Get latest golang version and split it in components | ||
norm=() | ||
while read -r line; do | ||
norm+=("$line") | ||
done < \ | ||
<(sed -E 's/^go([0-9]+)[.]([0-9]+)([.]([0-9]+))?(([a-z]+)([0-9]+))?/\1.\2\n\4\n\6\n\7/i' \ | ||
<(curl -fsSL "https://go.dev/dl/?mode=json&include=all" | jq -rc .[0].version) \ | ||
) | ||
# Serialize version, making sure we have a patch version, and separate possible rcX into .rc-X | ||
version="${norm[0]}" | ||
[ "${norm[1]}" != "" ] || norm[1]="0" | ||
norm[1]=".${norm[1]}" | ||
[ "${norm[2]}" == "" ] || norm[2]="-${norm[2]}" | ||
[ "${norm[3]}" == "" ] || norm[3]=".${norm[3]}" | ||
# Save it | ||
IFS= | ||
echo "GO_VERSION=${norm[*]}" >> $GITHUB_ENV | ||
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 1 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
cache: true | ||
check-latest: true | ||
- run: go install ./cmd/nerdctl | ||
# This here is solely to get the cni install script, which has not been modified in 3+ years. | ||
# There is little to no reason to update this to latest containerd | ||
- uses: actions/[email protected] | ||
with: | ||
repository: containerd/containerd | ||
ref: "v1.7.19" | ||
path: containerd | ||
fetch-depth: 1 | ||
- name: "Set up CNI" | ||
working-directory: containerd | ||
run: GOPATH=$(go env GOPATH) script/setup/install-cni-windows | ||
# Windows setup script can only use released versions | ||
- name: "Set up containerd" | ||
env: | ||
ctrdVersion: ${{ env.CONTAINERD_VERSION_WINDOWS }} | ||
run: powershell hack/configure-windows-ci.ps1 | ||
- name: "Run integration tests" | ||
continue-on-error: true | ||
run: go test -v ./cmd/... |
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
Oops, something went wrong.