Skip to content

Commit

Permalink
updating windows containerd nightly build to use golang 1.18.2 (kuber…
Browse files Browse the repository at this point in the history
…netes-sigs#220)

Signed-off-by: Mark Rossetti <marosset@microsoft.com>
  • Loading branch information
marosset authored May 13, 2022
1 parent c2e8d9c commit 68af09f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/windows-containerd-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.17.5
go-version: 1.18.2

- name: Create drop folder
run: mkdir -p $GITHUB_WORKSPACE/output/bin
Expand All @@ -31,7 +31,7 @@ jobs:
git clone https://github.com/Microsoft/hcsshim
cd hcsshim
go build -o $GITHUB_WORKSPACE/output/bin/containerd-shim-runhcs-v1.exe ./cmd/containerd-shim-runhcs-v1
git rev-parse HEAD > $GITHUB_WORKSPACE/output/bin/hcsshim-revision.txt
git rev-parse HEAD | tee $GITHUB_WORKSPACE/output/bin/hcsshim-revision.txt
- name: Build containerd
env:
Expand All @@ -43,7 +43,7 @@ jobs:
make binaries
cp ./bin/containerd.exe $GITHUB_WORKSPACE/output/bin
cp ./bin/ctr.exe $GITHUB_WORKSPACE/output/bin
git rev-parse HEAD > $GITHUB_WORKSPACE/output/bin/containerd-revision.txt
git rev-parse HEAD | tee $GITHUB_WORKSPACE/output/bin/containerd-revision.txt
- name: make windows-containerd zip
run: |
Expand Down

0 comments on commit 68af09f

Please sign in to comment.