Building Sega Genesis ROM #25
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: ci | |
run-name: Building Sega Genesis ROM | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Setup Go environment | |
uses: actions/[email protected] | |
with: | |
# Target architecture for Go to use. Examples: x86, x64. Will use system architecture by default. | |
architecture: windows/amd64 | |
- name: Execute asm68k | |
run: | | |
mkdir build | |
echo "" > 'build\Altered Beast (US).bin' | |
echo "" > 'build\Altered Beast (US).txt' | |
$GHWORKSPACE="${{ github.workspace }}" | |
$GHWORKSPACE=$GHWORKSPACE.replace("\", "/") | |
make WORKSPACE="$GHWORKSPACE" NAME="Altered Beast" VERSION="US" ASM68K_SWITCHES="//m //p //k" build | |