Skip to content

Commit

Permalink
Test Build
Browse files Browse the repository at this point in the history
  • Loading branch information
Kraust committed Jun 9, 2024
1 parent 708aa4f commit 1133620
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: push

jobs:
build_release:
if: startsWith(github.ref, 'refs/tags/v')
# if: startsWith(github.ref, 'refs/tags/v')
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -16,13 +16,12 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: "3.12"
- run: python3 -m pip install virtualenv
- run: python3 -m pip install virtualenv cx_Freeze
- run: python3 -m virtualenv venv
- run: .\venv\Scripts\activate.bat
- run: pip install .
- run: cmake .
- run: cmake --build .
- run: Compress-Archive -Path * -Destination OSCR.zip
- run: czfreeze build
- run: Compress-Archive -Path build/* -Destination OSCR.zip
- uses: actions/upload-artifact@v2
with:
name: build_release
Expand Down

0 comments on commit 1133620

Please sign in to comment.