Skip to content

Update rgbds version in docker image #663

Update rgbds version in docker image

Update rgbds version in docker image #663

Workflow file for this run

# Simply execute 'make' to verify things still build
name: Build All
on:
push:
branches:
- master
- 'tr_*'
# Allows running manually
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container: ghcr.io/medabots/medarot3:master
steps:
- name: List versions
run: |
git --version
python3 --version
rgbasm --version
rgblink --version
rgbgfx --version
- name: Checkout main repository
uses: actions/checkout@v2
with:
path: 'medarot3'
- name: Checkout baserom repository
uses: actions/checkout@v2
with:
repository: ${{ secrets.BASEROM3_REPOSITORY }}
ssh-key: ${{ secrets.BASEROM3_KEY }}
path: 'baserom'
- name: Copy baserom into main repository
run: |
cp $GITHUB_WORKSPACE/baserom/*.gbc $GITHUB_WORKSPACE/medarot3
- name: Make dump
working-directory: 'medarot3'
run: |
make -j dump
- name: Make all
working-directory: 'medarot3'
run: |
make -j all
- name: Verify there are no uncommitted changes
working-directory: 'medarot3'
run: |
[ -z "$(git status --porcelain)" ] && exit 0 || exit 1