Skip to content

CI: Add workflow for generating UI files. #1

CI: Add workflow for generating UI files.

CI: Add workflow for generating UI files. #1

Workflow file for this run

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
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
with:
name: cmake-windows-gui-files
path: |
GUI/xasyicons
GUI/xasyqtui
GUI/xasyversion