-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: David Son <[email protected]>
- Loading branch information
Showing
2 changed files
with
64 additions
and
2 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 |
---|---|---|
|
@@ -17,6 +17,8 @@ on: | |
- 'Dockerfile' | ||
- 'integration/**' | ||
- 'scripts/**' | ||
env: | ||
GO_VERSION: '1.20.6' | ||
|
||
jobs: | ||
test: | ||
|
@@ -25,7 +27,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.20.6' | ||
go-version: ${{ env.GO_VERSION }} | ||
- run: make | ||
- run: make test | ||
integration: | ||
|
@@ -40,5 +42,63 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.20.6' | ||
go-version: ${{ env.GO_VERSION }} | ||
- run: make integration | ||
|
||
integration-arm64: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
containerd: ["1.7.0"] | ||
arch: ["arm64"] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: uraimo/[email protected] | ||
id: integration-tests-arm64 | ||
with: | ||
arch: aarch64 | ||
distro: ubuntu20.04 | ||
env: | | ||
DOCKER_BUILD_ARGS: "CONTAINERD_VERSION=${{ matrix.containerd }}" | ||
dockerRunArgs: | | ||
-v /tmp:/tmp | ||
-v ${{ github.workspace }}:/soci-snapshotter | ||
shell: /bin/bash | ||
install: | | ||
dpkg --add-architecture arm64 | ||
apt-get update | ||
apt-get -y install curl gcc git make libz-dev wget | ||
wget -nv https://go.dev/dl/go${{ env.GO_VERSION }}.linux-arm64.tar.gz | ||
rm -rf /usr/local/go && tar -C /usr/local -xzf go${{ env.GO_VERSION }}.linux-arm64.tar.gz | ||
curl -fsSL https://get.docker.com -o get-docker.sh | ||
# Force arm64 arch package installation | ||
sed -i 's/arch=$(dpkg --print-architecture)/arch=arm64/g' get-docker.sh | ||
sed -i 's/containerd.io/containerd.io:arm64/g' get-docker.sh | ||
sed -i 's/pkg_version%=}/pkg_version%=}:arm64/g' get-docker.sh | ||
sed -i 's/docker-compose-plugin/docker-compose-plugin:arm64/g' get-docker.sh | ||
sed -i 's/docker-ce-rootless-extras$pkg_version/docker-ce-rootless-extras$pkg_version:arm64/g' get-docker.sh | ||
sed -i 's/docker-buildx-plugin/docker-buildx-plugin:arm64/g' get-docker.sh | ||
sh ./get-docker.sh | ||
curl -SL https://github.com/docker/compose/releases/download/v2.19.0/docker-compose-linux-aarch64 -o /usr/local/bin/docker-compose | ||
chmod +x /usr/local/bin/docker-compose | ||
run: | | ||
echo ${{ github.workspace }} | ||
dpkg --add-architecture arm64 | ||
export PATH=$PATH:/usr/local/go/bin | ||
uname -m | ||
go version | ||
docker info | ||
docker-compose --version | ||
containerd --version | ||
go env | ||
cd /soci-snapshotter | ||
STATIC=1 GOFLAGS="-buildvcs=false" make integration |
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