remove compiler specification for mac build #166
Workflow file for this run
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 and Test | |
on: [push, pull_request] | |
jobs: | |
check-build: | |
runs-on: ubuntu-20.04 | |
container: | |
image: traviswheelerlab/awfmindex-build | |
volumes: | |
- ${{ github.workspace }}:/code | |
steps: | |
- uses: actions/checkout@v1 | |
- run: git submodule update --init | |
- run: cmake . | |
- run: make | |
check-build-mac: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v1 | |
- run: git submodule update --init | |
- run: cmake . | |
- run: make || true | |
check-legacy-build: | |
runs-on: ubuntu-20.04 | |
container: | |
image: traviswheelerlab/awfmindex-build | |
volumes: | |
- ${{ github.workspace }}:/code | |
steps: | |
- uses: actions/checkout@v1 | |
- run: make -f Makefile_legacy | |
- run: make -f Makefile_legacy static | |
check-legacy-build-mac: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v1 | |
- run: make -f Makefile_legacy | |
- run: make -f Makefile_legacy static | |
check-format: | |
runs-on: ubuntu-20.04 | |
container: | |
image: traviswheelerlab/awfmindex-build | |
volumes: | |
- ${{ github.workspace }}:/code | |
steps: | |
- uses: actions/checkout@v1 | |
- run: ./tool/check-format.sh || true |