Skip to content

[Backport release-1.24] Bump Go to v1.20.8 #8280

[Backport release-1.24] Bump Go to v1.20.8

[Backport release-1.24] Bump Go to v1.20.8 #8280

Workflow file for this run

name: Go build
on:
push:
branches:
- main
- release-*
paths-ignore:
- 'docs/**'
- 'examples/**'
- '**.md'
- LICENSE
- '**.svg'
- '.github/workflows/docs.yml'
- '.github/workflows/mkdocs-set-default-version.yml'
- 'mkdocs.yml'
pull_request:
branches:
- main
- release-*
paths-ignore:
- 'docs/**'
- 'examples/**'
- '**.md'
- LICENSE
- '**.svg'
- '.github/workflows/docs.yml'
- '.github/workflows/mkdocs-set-default-version.yml'
- 'mkdocs.yml'
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
target: [linux, windows]
include:
- target: linux
build-docker-image: k0sbuild
airgap-image-bundle: airgap-image-bundle-linux-amd64.tar
- target: windows
binary-suffix: .exe
outputs:
airgap-image-bundle-hash-linux: ${{ steps.create-airgap-image-list.outputs.linux-hash }}
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
fetch-depth: 0 # for `git describe`
persist-credentials: false
- name: Prepare build environment
run: .github/workflows/prepare-build-env.sh
- name: Cache embedded binaries
uses: actions/cache@v3
with:
key: ${{ runner.os }}-embedded-bins-${{ matrix.target }}-${{ hashFiles('embedded-bins/**/*') }}
path: |
.bins.${{ matrix.target }}.stamp
bindata_${{ matrix.target }}
embedded-bins/staging/${{ matrix.target }}/bin/
embedded-bins/Makefile.variables
pkg/assets/zz_generated_offsets_${{ matrix.target }}.go
- name: Cache GOCACHE
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-gocache-${{ matrix.target }}-${{ github.ref_name }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-build-gocache-${{ matrix.target }}-${{ github.ref_name }}-
path: |
build/cache/go/build
- name: Cache GOMODCACHE
uses: actions/cache@v3
with:
key: ${{ runner.os }}-build-gomodcache-${{ matrix.target }}-${{ hashFiles('go.sum') }}
path: |
build/cache/go/mod
- name: Build
env:
TARGET_OS: '${{ matrix.target }}'
run: |
make bindata
make --touch codegen
make build
- name: Upload compiled binary
uses: actions/upload-artifact@v3
with:
name: k0s${{ matrix.binary-suffix }}
path: k0s${{ matrix.binary-suffix }}
- name: Create airgap image list
id: create-airgap-image-list
if: matrix.airgap-image-bundle
# Capture the calculated image bundle hash in a build output, so it can
# be shared between the cache actions in this job and in the integration
# test matrix. A cleaner solution would have been to use the cache here,
# and then upload the cached image bundle, to be downloaded later on in
# the integration tests. That's the way it's done for the k0s binary.
# Unfortunately, the upload action is significantly slower than the
# cache action, for unclear reasons, so stick with this solution for
# faster builds. See:
# * https://github.com/actions/upload-artifact/issues/199#issuecomment-1190171851
run: |
make airgap-images.txt
echo '${{ matrix.target }}-hash=${{ hashFiles('Makefile', 'airgap-images.txt', 'hack/image-bundler/*') }}' >> $GITHUB_OUTPUT
- name: Cache airgap image bundle
id: cache-airgap-image-bundle
if: matrix.airgap-image-bundle
uses: actions/cache@v3
# Technically, there's no need to restore the cache here, since this
# is more like a create-if-not-exists logic. Currently, there's no way
# to achieve this directly via actions/cache. See:
# * https://github.com/actions/cache/issues/321
# * https://github.com/actions/cache/pull/420
with:
key: ${{ matrix.airgap-image-bundle }}-${{ steps.create-airgap-image-list.outputs[format('{0}-hash', matrix.target)] }}
path: ${{ matrix.airgap-image-bundle }}
- name: Create airgap image bundle if not cached
if: matrix.airgap-image-bundle && steps.cache-airgap-image-bundle.outputs.cache-hit != 'true'
run: make ${{ matrix.airgap-image-bundle }}
unittest:
name: Unit test
needs: build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Cache GOCACHE
uses: actions/cache@v3
with:
key: ${{ runner.os }}-unittest-gocache-linux-${{ github.ref_name }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-unittest-gocache-linux-${{ github.ref_name }}-
${{ runner.os }}-build-gocache-linux-${{ github.ref_name }}-
path: |
build/cache/go/build
- name: Cache GOMODCACHE
uses: actions/cache@v3
with:
key: ${{ runner.os }}-unittest-gomodcache-linux-${{ hashFiles('go.sum') }}
restore-keys: |
${{ runner.os }}-build-gomodcache-linux-${{ hashFiles('go.sum') }}
path: |
build/cache/go/mod
- name: Run unit tests
env:
EMBEDDED_BINS_BUILDMODE: none
run: |
make bindata
make --touch codegen
make check-unit
- name: Validate OCI images manifests
run: make check-image-validity
smoketest:
name: Smoke test
needs: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
smoke-suite:
- check-addons
- check-airgap
- check-ap-airgap
- check-ap-ha3x3
- check-ap-platformselect
- check-ap-quorum
- check-ap-quorumsafety
- check-ap-selector
- check-ap-single
- check-ap-updater
- check-basic
- check-byocri
- check-calico
- check-cnichange
- check-ctr
- check-customports
- check-defaultstorage
- check-disabledcomponents
- check-dualstack
- check-externaletcd
- check-hacontrolplane
- check-kine
- check-kubeletcertrotate
- check-metrics
- check-multicontroller
- check-noderole
- check-singlenode
- check-backup
- check-k0scloudprovider
- check-cli
- check-disabledcomponents
- check-extraargs
- check-configchange
- check-upgrade
- check-psp
- check-statussocket
- check-tunneledkas
- check-workerrestart
- check-kubectl
- check-k0sctl
- check-metricscraper
- check-customdomain
- check-capitalhostnames
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Prepare build environment
run: .github/workflows/prepare-build-env.sh
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Download compiled binary
uses: actions/download-artifact@v3
with:
name: k0s
- name: k0s sysinfo
run: |
chmod +x k0s
./k0s sysinfo
- name: Cache airgap image bundle
id: cache-airgap-image-bundle
if: contains(matrix.smoke-suite, 'airgap')
uses: actions/cache@v3
with:
key: airgap-image-bundle-linux-amd64.tar-${{ needs.build.outputs.airgap-image-bundle-hash-linux }}
path: airgap-image-bundle-linux-amd64.tar
- name: Run inttest
env:
NEEDS_AIRGAP_IMAGE_BUNDLE: ${{ contains(matrix.smoke-suite, 'airgap') }}
run: |
[ "$NEEDS_AIRGAP_IMAGE_BUNDLE" != true ] || [ -f airgap-image-bundle-linux-amd64.tar ] || {
echo Airgap image bundle file missing!
exit 1
}
make -C inttest ${{ matrix.smoke-suite }}
- name: Collect test logs
if: failure()
uses: actions/upload-artifact@v3
with:
name: smoketest-${{ matrix.smoke-suite }}-logs
path: /tmp/*.log
- name: Collect cluster state
if: failure()
uses: actions/upload-artifact@v3
with:
name: smoketest-${{ matrix.smoke-suite }}-cluster-state
path: /tmp/cluster-state.zip
smoketest-arm:
name: Smoke test on armv7/arm64
strategy:
matrix:
arch:
- arm # this is armv7
- arm64
runs-on:
- self-hosted
- linux
- ${{ matrix.arch }}
steps:
# https://github.com/actions/checkout/issues/273#issuecomment-642908752 (see below)
- name: "Pre: Fixup directories"
run: find . -type d -not -perm /u+w -exec chmod u+w '{}' \;
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
fetch-depth: 0 # for `git describe`
persist-credentials: false
- name: Prepare build environment
run: .github/workflows/prepare-build-env.sh
# We cannot rely on this for arm: https://github.com/actions/setup-go/issues/106
- name: Set up Go
if: matrix.arch != 'arm'
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
# Install Go manually for arm. See above.
- name: Set up Go for armv6l
if: matrix.arch == 'arm'
run: |
echo "Setup go stable version $GO_VERSION"
rm -rf -- "$HOME/.local/go"
mkdir -p -- "$HOME/.local/go"
curl --silent -L "https://go.dev/dl/go${GO_VERSION%%.0}.linux-armv6l.tar.gz" | tar -C "$HOME/.local" -xz
echo "$HOME/.local/go/bin" >>"$GITHUB_PATH"
export PATH="$PATH:$HOME/.local/go/bin"
echo Added go to the path
echo "Successfully setup go version $GO_VERSION"
go version
echo ::group::go env
go env
echo ::endgroup::
- name: Cache embedded binaries
uses: actions/cache@v3
with:
key: ${{ runner.os }}-embedded-bins-${{ matrix.arch }}-${{ hashFiles('**/embedded-bins/**/*') }}
path: |
.bins.linux.stamp
bindata_linux
embedded-bins/staging/linux/bin/
embedded-bins/Makefile.variables
pkg/assets/zz_generated_offsets_linux.go
- name: Cache GOCACHE
uses: actions/cache@v3
with:
key: ${{ runner.os }}-smoketest-arm-gocache-${{ matrix.arch }}-${{ github.ref_name }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-smoketest-arm-gocache-${{ matrix.arch }}-${{ github.ref_name }}-
path: |
build/cache/go/build
- name: Cache GOMODCACHE
uses: actions/cache@v3
with:
key: ${{ runner.os }}-smoketest-arm-gomodcache-${{ matrix.arch }}-${{ hashFiles('go.sum') }}
path: |
build/cache/go/mod
- name: Disable race checker
if: matrix.arch == 'arm'
run: echo GO_TEST_RACE= >>"$GITHUB_ENV"
- name: Build
run: |
make bindata
make --touch codegen
make build
- name: Upload compiled binary
uses: actions/upload-artifact@v3
with:
name: k0s-${{ matrix.arch }}
path: k0s
- name: Unit tests
run: make check-unit
- name: k0s sysinfo
run: ./k0s sysinfo
- name: Run smoketest
run: make check-basic
- name: Create airgap image list
run: make airgap-images.txt
- name: Cache airgap image bundle
id: cache-airgap-image-bundle
uses: actions/cache@v3
with:
key: airgap-image-bundle-linux-${{ matrix.arch }}-${{ hashFiles('Makefile', 'airgap-images.txt', 'hack/image-bundler/*') }}
path: |
airgap-images.txt
airgap-image-bundle-linux-${{ matrix.arch }}.tar
- name: Create airgap image bundle if not cached
if: steps.cache-airgap-image-bundle.outputs.cache-hit != 'true'
run: make airgap-image-bundle-linux-${{ matrix.arch }}.tar
- name: Run airgap test
run: |
make --touch airgap-image-bundle-linux-${{ matrix.arch }}.tar
make check-airgap
- name: Collect test logs
if: failure()
uses: actions/upload-artifact@v3
with:
name: smoketest-${{ matrix.arch }}-check-basic-logs
path: /tmp/*.log
# https://github.com/actions/checkout/issues/273#issuecomment-642908752
# Golang mod cache tends to set directories to read-only, which breaks any
# attempts to simply remove those directories. The `make clean-gocache`
# target takes care of this, but the mod cache can't be deleted here,
# since it shall be cached across builds, and caching takes place as a
# post build action. So, as a workaround, ensure that all subdirectories
# are writable.
- name: "Post: Fixup directories"
if: always()
run: find . -type d -not -perm /u+w -exec chmod u+w '{}' \;