-
Notifications
You must be signed in to change notification settings - Fork 64
84 lines (73 loc) · 2.21 KB
/
tools-protoc-gen-go-netconn.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: tools/protoc-gen-go-netconn
on:
push:
branches: [stable]
pull_request:
types: [opened, synchronize, reopened]
branches: [staging]
paths:
- 'tools/protoc-gen-go-netconn/**'
- '.github/workflows/gobuild-protoc.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@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22.3
cache: false
- name: Set go.mod variable
id: goenv
run: |
cd tools/protoc-gen-go-netconn
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-protoc:
runs-on: ubuntu-latest
needs: go-vars
container: kraftkit.sh/myself-full:latest
env:
RUNGOGENERATE: false
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-go@v5
with:
go-version: 1.22.3
cache: false
- name: Set Go variables
id: goenv
run: |
cd tools/protoc-gen-go-netconn
{
echo "cache=$(go env GOCACHE)"
echo "modcache=$(go env GOMODCACHE)"
} >>"$GITHUB_OUTPUT"
- name: Go caches
uses: actions/cache@v4
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 protoc-gen-go-netconn
run: |
set -x
git config --global --add safe.directory /__w/kraftkit/kraftkit
export PATH="${GOROOT}/bin:$PATH"
cd tools/protoc-gen-go-netconn
go build -o ../../dist/
- name: Run Help Message
run: |
set -x
./dist/protoc-gen-go-netconn -h