chore: upgrade go 1.19.10 -> 1.21.0 (#9012) #5455
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
name: PR integration tests (darwin) | |
# Triggers the workflow on push or pull request events | |
on: [push, pull_request] | |
permissions: read-all | |
concurrency: | |
group: build-${{ github.event.pull_request.number || github.ref }}-${{github.workflow}} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: PR integration tests (darwin) | |
runs-on: macos-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19.* | |
id: go | |
# Retrieve build locations with `go env` | |
# <https://markphelps.me/posts/speed-up-your-go-builds-with-actions-cache/> | |
- id: go-cache-paths | |
run: | | |
echo "::set-output name=go-build::$(go env GOCACHE)" | |
echo "::set-output name=go-mod::$(go env GOMODCACHE)" | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
${{ steps.go-cache-paths.outputs.go-build }} | |
${{ steps.go-cache-paths.outputs.go-mod }} | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
# Skip integration tests for `docs`-only changes (only works for PR-based dev workflows like Skaffold's). | |
# NOTE: grep output is stored in env var with `|| true` as the run command cannot fail or action will fail | |
- name: Check if only docs changes were made in this PR | |
run: | | |
echo ${{ github.event.before }} | |
echo ${{ github.event.after }} | |
NON_DOCS_FILES_CHANGED=$(git diff --name-only ${{ github.event.pull_request.base.sha }}..${{ github.sha }}| grep -v '^docs/' || true) | |
echo "NON_DOCS_FILES_CHANGED=${#NON_DOCS_FILES_CHANGED}" >> $GITHUB_ENV # get the char len of diff output (used later) | |
- name: Make and install Skaffold binary from current PR | |
if: ${{ env.NON_DOCS_FILES_CHANGED != 0 }} | |
run: | | |
make | |
sudo install "${HOME}/work/skaffold/skaffold/out/skaffold" /usr/local/bin/skaffold | |
- name: Run integration tests | |
if: ${{ env.NON_DOCS_FILES_CHANGED != 0 }} | |
run: | | |
make quicktest |