Skip to content

Commit

Permalink
Merge branch 'master' into sourcery/master
Browse files Browse the repository at this point in the history
  • Loading branch information
malmeloo authored Oct 28, 2023
2 parents 60ad42e + f9c7079 commit 1976487
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
Build-PC:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-2022, ubuntu-22.04, ubuntu-20.04, macos-12]

Expand All @@ -19,11 +20,14 @@ jobs:
with:
python-version: '3.11'
- name: Install requirements with PIP
run: pip install -r requirements.txt
run: pip install --break-system-packages -r requirements.txt
- name: Install pyinstaller
run: pip install pyinstaller
run: pip install --break-system-packages pyinstaller
- name: Build RiiTag RPC
run: pyinstaller riitag-rpc.spec
- name: Mark as executable
if: ${{ matrix.os != 'windows-2022' }}
run: chmod -R +x dist/
- name: Publish Build Artifacts
uses: actions/upload-artifact@master
with:
Expand Down Expand Up @@ -52,9 +56,10 @@ jobs:
commands: |
sudo apt-get update
sudo apt-get install -y python3-pip
pip3 install -r requirements.txt
pip3 install pyinstaller
pip3 install --break-system-packages -r requirements.txt
pip3 install --break-system-packages pyinstaller
pyinstaller riitag-rpc.spec
chmod +x -R dist/
- name: Publish Build Artifacts
uses: actions/upload-artifact@master
with:
Expand Down

0 comments on commit 1976487

Please sign in to comment.