Skip to content

Commit

Permalink
ci: build test on push
Browse files Browse the repository at this point in the history
  • Loading branch information
osthomas committed Nov 13, 2023
1 parent 31454d9 commit db72e5c
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: build_test

on:
push

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

steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v4
with:
python-version: 3.11

- name: Install package
run: |
python -m pip install --upgrade pip wheel build
- name: Build package
run: |
python -m build
# Make a directory that matches the dist* glob in upload-artifact
# in order to upload the built package in a subdirectory.
mkdir dist_stub
build-win:
runs-on: windows-latest

# First check if doc versions match
needs: [build-linux]

steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v4
with:
python-version: 3.11

- name: Install package
run: |
python -m pip install --upgrade pip wheel
python -m pip install ".[build]"
- name: Build package
run: |
pyinstaller optoConfig96.spec
- name: Compress package
run: 7z a -tzip windows.zip ./dist/*


build-macos:
runs-on: macos-11

# First check if doc versions match
needs: [build-linux]

steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v4
with:
python-version: 3.11

- name: Install package and dependencies
run: |
brew install create-dmg
python -m pip install --upgrade pip wheel
python -m pip install ".[build]"
- name: Build package
run: |
pyinstaller optoConfig96.spec
chmod +x create_dmg.sh
# Sign after removal of offending packages (see optoConfig96.spec)
codesign -s - --force --all-architectures --timestamp --deep dist/optoConfig96.app
./create_dmg.sh

0 comments on commit db72e5c

Please sign in to comment.