Merge pull request #602 from paulscottrobson/lineno #876
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 | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: | | |
sudo apt update -y -qq | |
sudo apt install -y build-essential cmake git python3 python3-pip 64tass zip | |
sudo apt install -y libsdl2-dev gcc-arm-none-eabi mingw-w64 g++-mingw-w64-x86-64 | |
pip install pillow gitpython | |
git submodule update --init | |
git clone --depth 1 --branch master https://github.com/raspberrypi/pico-sdk /usr/share/pico_sdk | |
- name: Build | |
run: make | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: release | |
path: release/neo6502.zip | |