Skip to content

Commit 8e68609

Browse files
authored
Merge pull request #4 from coderbirju/test
fix: add some data to the scripts
2 parents 62e5aaa + 8a7ab5e commit 8e68609

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/release-automation.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,14 @@ jobs:
5050
run: go install github.com/google/go-licenses@latest
5151
- name: Create Third Party Licences File
5252
run: make licenses
53-
- name: setup static dependecies
54-
run: sudo apt-get install glibc-static libstdc++-static
53+
- name: Install Dependencies for e2e Testing
54+
run: ./setup-test-env.sh
55+
# - name: setup static dependecies
56+
# run: |
57+
# sudo apt-get update
58+
# sudo apt-get install glibc-static libstdc++-static
59+
# sudo apt install libstdc++-12-dev
60+
# sudo apt-get install libc6-dev
5561
- name: Create release binaries
5662
run: make RELEASE_TAG=${{ env.RELEASE_TAG }} release
5763
- name: Verify Release version

setup-test-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ NERDCTL_VERSION=1.7.6
66
BUILDKIT_VERSION=0.15.2
77
CNI_VERSION=1.5.1
88

9-
apt update && apt install -y make gcc linux-libc-dev libseccomp-dev pkg-config git
9+
apt update && apt install -y make gcc linux-libc-dev libseccomp-dev pkg-config git libc6-compat zlib-dev
1010

1111
# Download and install containerd
1212
curl -sSL --output /tmp/containerd.tgz https://github.com/containerd/containerd/releases/download/v${CONTAINERD_VERSION}/containerd-${CONTAINERD_VERSION}-linux-${TARGETARCH:-amd64}.tar.gz

0 commit comments

Comments
 (0)