Skip to content

Update installer requirements #814

Update installer requirements

Update installer requirements #814

Workflow file for this run

name: deploy
on:
push:
branches:
- "master"
- "hotfix/**"
- "feature/add-installer-submodule"
jobs:
binary:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 3
matrix:
os: [ windows-latest, ubuntu-20.04, ubuntu-22.04]
steps:
- name: πŸ™ Checkout GitHub repo (+ download lfs dependencies)
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: πŸ”— Install wget for Windows
if: matrix.os == 'windows-latest'
run: choco install wget --no-progress
- name: πŸ’š Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18.16.1
- name: πŸ’š Install dependencies
run: npm install
working-directory: webapp
- name: πŸ’š Build webapp
run: bash ./build-front.sh
working-directory: scripts
env:
NODE_OPTIONS: --max-old-space-size=8192
- name: 🐍 Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: 🐍 Install development dependencies
run: |
python -m pip install --upgrade pip
pip install pydantic --no-binary pydantic
pip install -r requirements-dev.txt
- name: 🐍 Install Windows dependencies
if: matrix.os == 'windows-latest'
run: pip install -r requirements-windows.txt
- name: πŸ“¦ Packaging
run: bash ./package_antares_web.sh
working-directory: scripts
- name: Add installer to package
run: bash ./package_antares_installer.sh
working-directory: scripts
- name: πŸ“œοΈ Copy changelog file
run: |
cp docs/CHANGELOG.md dist/package/CHANGELOG.md
- name: πŸ“¦ Archive Antares Desktop for Windows
if: matrix.os == 'windows-latest'
run: 7z a AntaresWeb.zip *
working-directory: dist/package
- name: πŸ“¦ Archive Antares Desktop for Ubuntu
# this is the only way to preserve file permission and symlinks
if: matrix.os != 'windows-latest'
run: zip -r --symlinks AntaresWeb.zip *
working-directory: dist/package
- name: πŸš€ Upload binaries
uses: actions/upload-artifact@v4
with:
name: AntaresWeb-${{ matrix.os }}-pkg
path: dist/package/AntaresWeb.zip