Skip to content

debug flag is terrible #12

debug flag is terrible

debug flag is terrible #12

Workflow file for this run

name: Studio - Master build
on:
push:
branches:
- "master"
paths-ignore:
- 'apps/sqltools/**'
concurrency:
group: master-build
cancel-in-progress: true
jobs:
masterbuild:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-14, ubuntu-20.04, windows-2019]
steps:
- name: Check out Git repository
uses: actions/checkout@v1
- name: Install python 3.8 (not Mac)
uses: actions/setup-python@v5
with:
python-version: 3.8
if: "!startsWith(matrix.os, 'macos')"
- name: Install python 3.8 (mac)
if: "startsWith(matrix.os, 'macos')"
run: |
# Install Python 3.8
brew install [email protected]
# Add Python 3.8 to PATH
echo "/opt/homebrew/opt/[email protected]/libexec/bin" >> $GITHUB_PATH
export PATH="/opt/homebrew/opt/[email protected]/libexec/bin:$PATH"
export PYTHON_PATH="/opt/homebrew/opt/[email protected]/libexec/bin/python3"
- name: Verify Python Version
if: "startsWith(matrix.os, 'windows')"
run: |
$PYTHON_VERSION = python --version | Out-String
Write-Output "Installed Python version: $PYTHON_VERSION"
if (-not $PYTHON_VERSION.StartsWith("Python 3.8")) {
Write-Output "Error: Python version does not start with 3.8"
exit 1
}
shell: powershell
- name: Verify Python Version
if: "!startsWith(matrix.os, 'windows')"
run: |
PYTHON_VERSION=$(python3 --version | cut -d " " -f 2)
echo "Installed Python version: $PYTHON_VERSION"
if [[ ! $PYTHON_VERSION == 3.8* ]]; then
echo "Error: Python version does not start with 3.8"
exit 1
fi
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: yarn
- name: Clean cache
run: yarn cache clean
- name: Check dependencies
run: "yarn install --frozen-lockfile --network-timeout 100000"
env:
npm_config_node_gyp: ${{ github.workspace }}${{ runner.os == 'Windows' && '\node_modules\node-gyp\bin\node-gyp.js' || '/node_modules/node-gyp/bin/node-gyp.js' }}
- name: Build Electron app
run: "yarn run electron:build --publish never"
env:
PYTHON_PATH: "${{ startsWith(matrix.os, 'macos') && '/opt/homebrew/opt/[email protected]/libexec/bin/python3' || '$PYTHON_PATH' }}"
PYTHONPATH: "${{ startsWith(matrix.os, 'macos') && '/opt/homebrew/opt/[email protected]/libexec/bin/python3' || '$PYTHONPATH' }}"
- name: Cleanup artifacts
if: "!startsWith(matrix.os, 'windows')"
run: |
npx rimraf "apps/studio/dist/!(*.exe|*.deb|*.rpm|*.AppImage|*.dmg|*.snap)"
- name: Cleanup artifacts Win
if: "startsWith(matrix.os, 'windows')"
continue-on-error: true
run: |
npx rimraf "apps\studio\dist\!(*.exe)"
- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: ${{ matrix.os }}
path: apps/studio/dist