gomod(deps): Bump github.com/golang/glog from 1.0.0 to 1.1.2 in /tools/go-generate-qemu-devices #236
Workflow file for this run
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: tools/go-generate-qemu-device | |
on: | |
push: | |
branches: [staging] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: [staging] | |
paths: | |
- 'tools/go-generate-qemu-devices/**' | |
- '.github/workflows/gobuild-qemu-devices.yaml' | |
jobs: | |
# This job must run on the runner because hashFiles() operates on the runner | |
# by design, not inside the defined container (actions/runner#837). | |
go-vars: | |
runs-on: ubuntu-latest | |
outputs: | |
modhash: ${{ steps.gomod.outputs.hash }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20.6 | |
cache: false | |
- name: Set go.mod variable | |
id: goenv | |
run: | | |
cd tools/go-generate-qemu-devices | |
echo "mod=$(go env GOMOD)" >>"$GITHUB_OUTPUT" | |
- name: Set go.mod hash variable | |
id: gomod | |
run: echo "hash=${{ hashFiles(steps.goenv.outputs.mod) }}" >>"$GITHUB_OUTPUT" | |
build-qemu-devices: | |
runs-on: ubuntu-latest | |
needs: go-vars | |
container: kraftkit.sh/myself-full:latest | |
name: Build Check | |
env: | |
RUNGOGENERATE: false | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20.6 | |
cache: false | |
- name: Set Go variables | |
id: goenv | |
run: | | |
cd tools/go-generate-qemu-devices | |
{ | |
echo "cache=$(go env GOCACHE)" | |
echo "modcache=$(go env GOMODCACHE)" | |
} >>"$GITHUB_OUTPUT" | |
- name: Go caches | |
uses: actions/cache@v3 | |
with: | |
path: | | |
${{ steps.goenv.outputs.cache }} | |
${{ steps.goenv.outputs.modcache }} | |
key: ${{ github.job }}-${{ runner.os }}-go-${{ needs.go-vars.outputs.modhash }} | |
restore-keys: | | |
${{ github.job }}-${{ runner.os }}-go- | |
- name: Build go-generate-qemu-devices | |
run: | | |
set -x | |
git config --global --add safe.directory /__w/kraftkit/kraftkit | |
cd tools/go-generate-qemu-devices | |
go build -o ../../dist/ | |
- name: Run Help Message | |
run: | | |
set -x | |
./dist/go-generate-qemu-devices -h |