Add extra delay for 464+tape adapter case #22
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: Windows build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt -y install binutils-z80 dos2unix gcc-mingw-w64 | |
- run: make thirdparty | |
- run: CC=x86_64-w64-mingw32-gcc make | |
- run: if [ -e dsk2cdt ] ; then mv dsk2cdt dsk2cdt.exe ; fi && mv readme.md readme.txt | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: dsk2cdt | |
path: | | |
dsk2cdt.exe | |
readme.txt |