work on actions

This commit is contained in:
Jeff Epler 2022-03-11 17:39:58 -06:00
parent a21ec97f2f
commit 705a9869d7
No known key found for this signature in database
GPG key ID: D5BF15AB975AB4DE

View file

@ -15,14 +15,17 @@ jobs:
steps: steps:
- name: checkout - name: checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
with:
submodules: true
- name: install dependencies - name: install dependencies
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get --no-install-recommends -y install build-essential git sudo apt-get --no-install-recommends -y install build-essential git cc65
- name: build - name: build
run: | run: |
make -C c2t
docker run --rm -v $(pwd):/src -u $(id -u):$(id -g) emscripten/emsdk ./build.sh docker run --rm -v $(pwd):/src -u $(id -u):$(id -g) emscripten/emsdk ./build.sh
- if: github.event_name == 'push' && github.ref == 'refs/heads/main' - if: github.event_name == 'push' && github.ref == 'refs/heads/main'