Merge pull request #33 from RC1844/patch-1 #121
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: Linux | |
on: | |
pull_request: | |
push: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
kind: [static, shared] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Installation | |
run: | | |
sudo apt-get install -y cmake | |
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-9 60 | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 60 | |
sudo update-alternatives --install /usr/bin/cpp cpp /usr/bin/cpp-9 60 | |
sudo update-alternatives --set g++ /usr/bin/g++-9 | |
sudo update-alternatives --set gcc /usr/bin/gcc-9 | |
sudo update-alternatives --set cpp /usr/bin/cpp-9 | |
- name: Tests | |
run: | | |
./scripts/test-unix.sh |