This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'beta' into confirm-impfb
- Loading branch information
Showing
189 changed files
with
194 additions
and
30,854 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Build workflow | ||
# Builds the application for windows and ubuntu to test whether the latest commit builds or not. | ||
name: build | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-windows: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Setup Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.9 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Build Windows | ||
run: pyinstaller --clean --noconfirm specs/windows-terminservice.spec | ||
build-linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Setup Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.9 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Build Linux | ||
run: pyinstaller --clean --noconfirm specs/linux-64-terminservice.spec |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# Deploy workflow | ||
# Builds the application for windows and ubuntu and creates distributable. Then creates a new | ||
# Github release with the tag name and uploads the distributables to the release. | ||
# Runs only on "v*" tags like "v1.0.0". | ||
name: deploy | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-windows: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Setup Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.9 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Build Windows | ||
run: pyinstaller --clean --noconfirm specs/windows-terminservice.spec | ||
- name: Chocolatey install innosetup | ||
uses: crazy-max/[email protected] | ||
with: | ||
# Arguments to pass to Chocolatey | ||
args: install innosetup --install-arguments="'/DIR=../innosetup'" --force | ||
- name: Run innosetup | ||
run: ../innosetup/ISCC.exe specs/windows-terminservice.iss | ||
- name: Zip | ||
uses: papeloto/action-zip@v1 | ||
with: | ||
files: dist/ | ||
dest: vaccipy-windows.zip | ||
- name: Store windows zip as build artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: vaccipy-windows | ||
path: vaccipy-windows.zip | ||
- name: Store windows installer as build artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: vaccipy-windows-installer | ||
path: installers/vaccipy_installer.exe | ||
|
||
build-linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
- name: Setup Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.9 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
- name: Build Linux | ||
run: pyinstaller --clean --noconfirm specs/linux-64-terminservice.spec | ||
- name: Zip | ||
uses: papeloto/action-zip@v1 | ||
with: | ||
files: dist/ | ||
dest: vaccipy-ubuntu.zip | ||
- name: Store windows build artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: vaccipy-ubuntu | ||
path: vaccipy-ubuntu.zip | ||
|
||
release: | ||
runs-on: ubuntu-latest | ||
needs: [build-windows, build-linux] | ||
steps: | ||
- name: Download build files | ||
uses: actions/download-artifact@v2 | ||
- uses: marvinpinto/action-automatic-releases@latest | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
files: | | ||
vaccipy-windows-installer/vaccipy_installer.exe | ||
vaccipy-windows/vaccipy-windows.zip | ||
vaccipy-ubuntu/vaccipy-ubuntu.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-294 KB
...-terminservice/_struct/cpython-39-x86_64-linux-gnu/sotruct.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file not shown.
Oops, something went wrong.