Enable FAST-SCSI from GUI, optimize Put16x16, and Convert file name from UTF8 to system encoding. #81
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 Test on Pull-Request | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: mkdir | |
run: mkdir ci | |
- name: cmake | |
run: cmake ../src | |
working-directory: ./ci | |
- name: build | |
run: cmake --build . --config Release | |
working-directory: ./ci | |
- name: make_zip | |
run: | | |
cmake -E copy ./main_cui/Release/Tsugaru_CUI.exe . | |
cmake -E copy ../readme.md . | |
cmake -E copy ../command.md . | |
cmake -E tar cvf windows_binary_latest.zip --format=zip Tsugaru_CUI.exe readme.md command.md | |
working-directory: ./ci | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: mkdir | |
run: mkdir ci_ubuntu | |
- name: install-OpenGL | |
run: sudo apt-get install libglu1-mesa-dev mesa-common-dev | |
- name: cmake | |
run: cmake ../src -DCMAKE_BUILD_TYPE=Release | |
working-directory: ./ci_ubuntu | |
- name: build | |
run: cmake --build . | |
working-directory: ./ci_ubuntu | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: mkdir | |
run: mkdir ci_macos | |
- name: cmake | |
run: cmake ../src -DCMAKE_BUILD_TYPE=Release | |
working-directory: ./ci_macos | |
- name: build | |
run: cmake --build . | |
working-directory: ./ci_macos |