Skip to content

ubuntu build on xl #436

ubuntu build on xl

ubuntu build on xl #436

Workflow file for this run

# Copyright (C) 2022 André Pedersen
# Copyright (C) 2022 Abraham Smith
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
name: Build Windows
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
shell: pwsh
run: |
python -m pip install --upgrade pip setuptools wheel
pip install "pyinstaller==6.6.0"
pip install -r painter/requirements.txt
- name: Build software
shell: pwsh
run: |
cd painter
python src/build/run_pyinstaller.py
- name: Install NSIS
shell: pwsh
run: |
choco install nsis -y
echo "C:\Program Files (x86)\NSIS" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Make installer
shell: pwsh
run: |
cd painter
makensis.exe src/build/assets/Installer.nsi
- name: Upload package
uses: actions/upload-artifact@v4
with:
name: Package
path: ${{ github.workspace }}\painter\dist\RootPainterInstaller.exe
if-no-files-found: error