rounding to int in graphics_scene #96
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
# Copyright (C) 2022 André Pedersen | |
# Copyright (C) 2022 Abraham George Smith | |
# Copyright (C) 2023 Rohan Orton | |
#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 Ubuntu 22.04 | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python '3.10' | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
cd painter | |
python -m pip install --upgrade pip | |
python -m venv env | |
source env/bin/activate | |
# install pyinstaller seperately to use different version depending on platform | |
pip install pyinstaller==4.8 # fix for https://github.com/Abe404/root_painter/issues/41 | |
pip install -r requirements.txt | |
- name: Build software | |
run: | | |
cd painter | |
source env/bin/activate | |
python src/build/run_pyinstaller.py | |
- name: Make installer | |
run: | | |
cd painter | |
bash src/build/make_deb_file.sh | |
- name: Upload package | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Package | |
path: ${{github.workspace}}/painter/dist/RootPainter3D.deb | |
if-no-files-found: error |