-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (54 loc) · 1.61 KB
/
sync.yml
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
name: Sync benchmarks
on:
workflow_dispatch:
inputs:
effekt_commit:
description: "Commit SHA of Effekt submodule to checkout and build. If omitted, the latest commit is chosen. (OPTIONAL)"
required: false
schedule:
- cron: '0 */12 * * *'
permissions:
contents: write
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Set up NodeJS
uses: actions/setup-node@v3
with:
node-version: 16
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Checkout given commit
if: "${{ github.event.inputs.effekt_commit != '' }}"
run: |
git -C effekt/ checkout ${{ github.event.inputs.effekt_commit }}
- name: Checkout most recent commit
if: "${{ github.event.inputs.effekt_commit == '' }}"
run: |
git -C effekt/ checkout master
git -C effekt/ pull
- name: Update submodule
run: |
git submodule update --recursive --remote --init
- name: Install generator dependencies
run: |
sudo apt update
sudo apt install jq cloc
- name: Generate data
run: |
cd generate/ && ./main.sh
- name: Push new data
run: |
git add effekt data
git config --global user.name 'GitHub Action'
git config --global user.email ''
git commit -m "GitHub Action: Automated sync"
git push