forked from MonsterDruide1/OdysseyDecomp
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (32 loc) · 831 Bytes
/
decomp-dev.yml
File metadata and controls
33 lines (32 loc) · 831 Bytes
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
name: decomp-dev
on:
push:
branches:
- master
pull_request:
permissions: {}
jobs:
publish_progress_decomp_dev:
runs-on: ubuntu-24.04
strategy:
matrix:
version: ["1.0"]
steps:
- name: Check out project
uses: actions/checkout@v6
with:
submodules: recursive
- name: Set up python
uses: actions/setup-python@v6
with:
python-version: '3.14'
cache: 'pip'
- name: Set up python package dependencies
run: pip install cxxfilt pyyaml protobuf
- name: Run report generator for decomp.dev
run: python .github/scripts/decomp-dev.py --version ${{ matrix.version }} -o report.json
- name: Upload report
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.version }}_report
path: report.json