Merge pull request #23 from nmlgc/vt #1
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: C/C++ CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
- run: mkdir -p binary | |
working-directory: . | |
- name: make i286 | |
run: make -f Makefile.mingw i286 | |
- name: make i386 | |
run: make -f Makefile.mingw i386 | |
- name: make i486 | |
run: make -f Makefile.mingw i486 | |
- uses: actions/upload-artifact@master | |
with: | |
name: mingw | |
path: ./binary | |