-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (40 loc) · 1.15 KB
/
progress.yml
File metadata and controls
49 lines (40 loc) · 1.15 KB
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
name: Generate Progress Report
on:
push:
branches:
- main
jobs:
build:
if: github.repository_owner == 'iwillcraft-m0d'
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Checkout Elf Repository
uses: actions/checkout@v4
with:
repository: iwillcraft-m0d/dogcomp-elfs
token: ${{ secrets.k4d }}
path: elf
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U -r requirements.txt
- name: Setup build environment
run: |
sudo apt-get install binutils-mips-linux-gnu
tools/setup_prodg_linux.sh
- name: Configure and generate report
run: |
python configure.py -diff
ninja
./tools/objdiff-cli report generate > report.json
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: SCES_512.48_report
path: ./report.json