Frontend.Console: fix crash related to SharpRaven #2756
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: macOS | |
on: [push] | |
jobs: | |
macOS_build: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run a one-line script | |
run: ./configure.sh && make sanitycheck && make strict && make release | |
macOS_tests_unit: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run a one-line script | |
run: ./configure.sh && make && make check | |
macOS_tests_integration: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run a one-line script | |
run: ./configure.sh && make && make update-servers |