Skip to content

Add results '% Reduction' column to show percentage RAM change to ori… #3

Add results '% Reduction' column to show percentage RAM change to ori…

Add results '% Reduction' column to show percentage RAM change to ori… #3

Workflow file for this run

name: Build Executable
on:
push:
branches:
- master
jobs:
build-windows:
name: Build on Windows
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
pip install -r requirements.txt
- name: Build executable
run: |
pyinstaller --onefile `
--name "optimuspy" `
--add-data "executors.py:." `
--add-data "results.py:." `
--add-data "execution_mode.py:." `
--console `
optimuspy.py
- name: Upload executable artifact
uses: actions/upload-artifact@v3
with:
name: optimuspy-winOS
path: dist/optimuspy.exe
retention-days: 180