-
Notifications
You must be signed in to change notification settings - Fork 2
67 lines (55 loc) · 1.94 KB
/
generation.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
name: Generation with Serializers
on:
workflow_dispatch:
push:
branches:
- main
jobs:
generation:
runs-on: ubuntu-latest
steps:
- name: Clone 'telemetry-serializers'
uses: actions/checkout@v4
with:
repository: '${{ github.repository }}'
submodules: true
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- name: Set up Go
uses: actions/setup-go@v4
- name: Print go envs
run: go env
- name: Install Python requirements
run: 'pip install -r lib/serializers/requirements.txt'
- name: Install 'protoc'
run: |
DEBIAN_FRONTEND=noninteractive
sudo apt update
sudo apt install -y protobuf-compiler
# - name: Install protoc 'json-schema' extension
# run: |
# go install github.com/chrusty/protoc-gen-jsonschema/cmd/protoc-gen-jsonschema@latest
- name: Run Serializers files generation
working-directory: ./lib/serializers
run: python3 src/generator/main.py ../../proto /tmp/generated
# - name: Run JSON Schema files generation
# working-directory: ./lib/serializers
# run: |
# ./scripts/generate_schemas /tmp/generated/proto /tmp/generated
- name: Change branch to 'build'
uses: actions/checkout@v4
with:
ref: build
- name: Publish generated code on build branch
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git rm -r --ignore-unmatch */*
rm -rf *
cp -r /tmp/generated/* .
git add .
if [[ $(git status --porcelain) ]]; then git commit -am "chore: automatically generated files" && git push; fi
echo "::set-output name=HASH::$(git rev-parse HEAD)"