Skip to content

test(variant): correct unit test (foreign key constraint) #656

test(variant): correct unit test (foreign key constraint)

test(variant): correct unit test (foreign key constraint) #656

Workflow file for this run

#file: noinspection YAMLSchemaValidation
name: deploy
on:
push:
branches:
- "master"
- "hotfix/**"
jobs:
binary:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 3
matrix:
os: [ windows-latest, ubuntu-20.04 ]
steps:
- name: πŸ™ Checkout GitHub repo (+ download lfs dependencies)
uses: actions/checkout@v3
with:
fetch-depth: 0
- 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@v3
with:
node-version: 18.16.1
- name: πŸ’š Install dependencies
run: npm install --legacy-peer-deps
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@v1
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: πŸ“œ Install changelog requirements
run: npm install -g auto-changelog
- name: πŸ“œοΈ Generate changelog file
run: |
auto-changelog -l false --hide-empty-releases
mv CHANGELOG.md dist/package/CHANGELOG.md
- name: πŸ“¦ Archive Antares Desktop + Worker for Windows
if: matrix.os == 'windows-latest'
run: 7z a AntaresWeb.zip *
working-directory: dist/package
- name: πŸ“¦ Archive Antares Desktop + Worker for Ubuntu
# this is the only way to preserve file permission and symlinks
if: matrix.os == 'ubuntu-20.04'
run: zip -r --symlinks AntaresWeb.zip *
working-directory: dist/package
- name: πŸš€ Upload binaries
uses: actions/upload-artifact@v3
with:
name: AntaresWeb-${{ matrix.os }}-pkg
path: dist/package/AntaresWeb.zip