-
Notifications
You must be signed in to change notification settings - Fork 0
85 lines (70 loc) · 2.06 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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
issues: write
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Install libuv
run: sudo apt-get install libuv1-dev
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: 16
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'zulu'
cache: 'sbt'
- name: Setup SBT
uses: sbt/setup-sbt@v1
- 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 python3
- name: Print system information
run: |
sudo apt install inxi
inxi -Fxz
- name: Generate data
run: |
cd generate/ && ./main.sh
- name: Detect outliers
run: |
cd alerts/ && ./main.sh
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- 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