Move comm_megawifi tick handler registration to comm_megawifi_init() #241
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 & Release | |
on: | |
workflow_dispatch: | |
push: | |
branches: "*" | |
create: | |
tags: | |
- v* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the Docker image | |
env: | |
CMOCKA_MESSAGE_OUTPUT: xml | |
CMOCKA_XML_FILE: ../bin/TEST-cmocka.xml | |
ENABLE_SANITISE_CHECKS: 1 | |
run: | | |
mkdir out | |
./docker-make all | |
mv out/rom.bin out/rom_standard.bin | |
rm -f out/rom_head.o out/rom_head.bin out/rom.out out/rom.bin | |
./docker-make ROM_TYPE=MEGAWIFI release | |
mv out/rom.bin out/rom_megawifi.bin | |
- name: Report test results | |
uses: ashley-taylor/[email protected] | |
if: always() | |
with: | |
access-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get version | |
id: get_version | |
run: echo ::set-output name=VERSION::$(cat ./out/version.txt) | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Upload Standard ROM | |
id: upload_standard_rom | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./out/rom_standard.bin | |
asset_name: mega-drive-midi-interface-${{ steps.get_version.outputs.VERSION }}.bin | |
asset_content_type: application/octet-stream | |
- name: Upload MegaWiFi ROM | |
id: upload_megawifi_rom | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./out/rom_megawifi.bin | |
asset_name: mega-drive-midi-interface-megawifi-${{ steps.get_version.outputs.VERSION }}.bin | |
asset_content_type: application/octet-stream |