update gcc@9 to gcc@13 on mac #89
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 on unix-like | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
jobs: | |
build: | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: linux_prereq | |
if: runner.os == 'Linux' | |
run: sudo apt-get install nkf libncurses5-dev | |
- name: macos_prereq | |
if: runner.os == 'macOS' | |
run: brew install nkf gcc@13 | |
- name: configure | |
run: ./configure | |
- name: make | |
run: make install | |
- uses: sarisia/actions-status-discord@v1 | |
if: always() | |
env: | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} | |
with: | |
status: ${{ job.status }} |