-
Notifications
You must be signed in to change notification settings - Fork 18
45 lines (36 loc) · 1.01 KB
/
frogress.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
name: Frogress
on:
push:
branches:
- main
- frogress
jobs:
update-progress:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- 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 wine
run: |
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install wine32
- name: Setup build environment
run: |
sudo apt-get install binutils-mips-linux-gnu
scripts/setup_progd_linux.sh
curl -o disc/SCUS_971.98 "${{ secrets.FILE_URL }}"
- name: Run build script
run: |
python configure.py
ninja
- name: Post to frogress endpoint
run: |
python3 scripts/upload_progress.py --frogress_api_key ${{ secrets.FROGRESS_API_KEY }}