Merge pull request #113 from Glirastes/patch-1 #100
This file contains hidden or 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: Unit Tests | |
on: [push, pull_request] | |
jobs: | |
macos-clang-amalgamated: | |
name: "macOS Clang (amalgamated)" | |
runs-on: macos-latest | |
env: | |
AMALGAMATED: 1 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: brew install ninja | |
- name: Run ci-unix | |
run: test/unit/ci-unix.sh | |
ubuntu-scan-build: | |
name: "Clang Static Analysis (source)" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y ninja-build clang-tools | |
- name: Run scan-build | |
run: tools/scan-build.sh | |
ubuntu-tcc: | |
name: "TinyCC (source)" | |
runs-on: ubuntu-latest | |
env: | |
CC: tcc | |
CXX: /bin/false | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y ninja-build tcc | |
- name: Run ci-unix | |
run: test/unit/ci-unix.sh | |
ubuntu-gcc-9: | |
name: "Ubuntu 20.04 GCC 9 (source)" | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Ninja | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y ninja-build | |
- name: Install lcov | |
run: | | |
curl -LO https://github.com/linux-test-project/lcov/releases/download/v1.15/lcov-1.15.tar.gz | |
tar xzf lcov-1.15.tar.gz | |
cd lcov-1.15 | |
sudo make install | |
- name: Run ci-unix | |
run: test/unit/ci-unix.sh | |
- name: Collect coverage | |
run: tools/coverage.sh | |
- name: Submit coverage to Coveralls | |
id: coverage | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Print Coveralls submission result | |
run: echo ${{ steps.coverage.outputs['coveralls-api-result'] }} | |
ubuntu-gcc-7: | |
name: "Ubuntu 20.04 GCC 7 (amalgamated)" | |
runs-on: ubuntu-20.04 | |
env: | |
CC: gcc-7 | |
CXX: g++-7 | |
AMALGAMATED: 1 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y ninja-build gcc-7 | |
- name: Run ci-unix | |
run: test/unit/ci-unix.sh | |
ubuntu-gcc-5: | |
name: "Ubuntu 18.04 GCC 5 (amalgamated)" | |
runs-on: ubuntu-18.04 | |
env: | |
CC: gcc-5 | |
CXX: g++-5 | |
AMALGAMATED: 1 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
# https://askubuntu.com/a/1087368 | |
# note for when 18.04 is EOL: https://askubuntu.com/a/1313032 | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y ninja-build gcc-5 | |
- name: Run ci-unix | |
run: test/unit/ci-unix.sh | |
windows-cl-2019-x64: | |
name: "Windows VS2019 amd64 (source)" | |
runs-on: windows-latest | |
env: | |
COMPILER: cl-2019-x64 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run ci-windows (Windows) | |
shell: cmd | |
run: test\\unit\\ci-windows.bat | |
windows-cl-2015-x86: | |
name: "Windows VS2015 x86 (amalgamated)" | |
runs-on: windows-latest | |
env: | |
COMPILER: cl-2015-x86 | |
AMALGAMATED: 1 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Amalgamate | |
shell: bash | |
run: tools\\amalgamate.sh | |
- name: Run ci-windows (Windows) | |
shell: cmd | |
run: test\\unit\\ci-windows.bat |