-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Add workflow for generating UI files.
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 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,42 @@ | ||
name: build-gui | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- "master" | ||
- "a/*" | ||
jobs: | ||
build-gui-linux: | ||
runs-on: "ubuntu-22.04" | ||
steps: | ||
- name: install dependencies | ||
run: python3 -m pip install -r GUI/requirements.dev.txt -r requirements.txt | ||
- name: build GUI files | ||
run: cd GUI && python3 buildtool.py build | ||
- name: Archive generated GUI files | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: cmake-linux-gui-files | ||
path: | | ||
GUI/xasyicons | ||
GUI/xasyqtui | ||
GUI/xasyversion | ||
build-gui-windows: | ||
runs-on: "windows-2022" | ||
steps: | ||
- name: install dependencies | ||
run: python.exe -m pip install -r GUI/requirements.dev.txt -r requirements.txt | ||
- name: build GUI files | ||
shell: pwsh | ||
run: | | ||
Push-Location GUI | ||
python.exe buildtool.py build | ||
Pop-Location | ||
- name: Archive generated GUI files | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: cmake-windows-gui-files | ||
path: | | ||
GUI/xasyicons | ||
GUI/xasyqtui | ||
GUI/xasyversion |