-
Notifications
You must be signed in to change notification settings - Fork 21
54 lines (47 loc) · 1.54 KB
/
pr-test-generated-files.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
name: Generated Code Test
## Only trigger tests if source is changing
on:
push:
paths:
- '**.proto'
- '**.lr'
- '**.go'
env:
PROTO_VERSION: "21.7"
jobs:
# Check if there is any dirty change for generated files
generated-files:
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ">=${{ env.golang-version }}"
cache: false
# We do not permit sudo on self-hosted runners
- name: "Ensure GCC is installed"
run: |
if gcc --version; then
echo "Good to go";
else
echo "Install GCC on the runner.";
fi
# Note we do not use apt install -y protobuf-compiler` since it is too old
- name: Check generated files
run: |
PB_REL="https://github.com/protocolbuffers/protobuf/releases"
curl -LO $PB_REL/download/v${PROTO_VERSION}/protoc-${PROTO_VERSION}-linux-x86_64.zip
mkdir tools
unzip protoc-${PROTO_VERSION}-linux-x86_64.zip -d ./tools
rm protoc-${PROTO_VERSION}-linux-x86_64.zip
export PATH="$PATH:$(pwd)/tools/bin"
protoc --version
make prep
make cnquery/generate
git diff --exit-code *.go
git diff --exit-code providers/**/*.lr.json
git diff --exit-code providers/**/*.resources.json