Skip to content

Commit

Permalink
added CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
tridge committed Sep 1, 2024
1 parent c0372b9 commit b15ec0d
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/CI_build_linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI Build Linux

on: [push, pull_request]

jobs:
build:
runs-on: 'ubuntu-latest'

steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: install dependencies
run: |
python3 -m pip install pyinstaller simpleaudio setuptools
- name: Build CI
run: |
python3 package/build.py
- name: Archive build
uses: actions/upload-artifact@v3
with:
name: ESC unlocker
path: |
esc_unlocker_linux
retention-days: 7
28 changes: 28 additions & 0 deletions .github/workflows/CI_build_windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI Build Windows

on: [push, pull_request]

jobs:
build:
runs-on: 'windows-latest'

steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: install dependencies
run: |
python3 -m pip install pyinstaller simpleaudio setuptools
- name: Build CI
run: |
python3 package/build.py
- name: Archive build
uses: actions/upload-artifact@v3
with:
name: ESC unlocker
path: |
esc_unlocker_windows.exe
retention-days: 7

0 comments on commit b15ec0d

Please sign in to comment.