update yarn.lock and python version (#469) #268
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
name: Build native gdbgui executables with pyinstaller and pex | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
release: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python-version: ["3.12"] | |
include: | |
- os: ubuntu-latest | |
buildname: linux | |
# - os: windows-latest | |
# buildname: windows | |
- os: macos-latest | |
buildname: mac | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install nox | |
- name: Compile ${{ matrix.buildname }} gdbgui executable | |
run: | | |
nox --non-interactive --session build_executables_${{ matrix.buildname }} | |
- name: Upload ${{ matrix.buildname }} executable | |
# if: github.ref == 'refs/heads/master' | |
uses: actions/upload-artifact@v2 | |
with: | |
name: gdbgui_${{ matrix.buildname }} | |
path: | | |
./build/executable |