parent
88b3c1acf9
commit
352c083f65
|
@ -9,14 +9,28 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build-ubuntu-gcc:
|
build-ubuntu-gcc:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
version: [12]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
- name: Setting up gcc version
|
||||||
|
run: |
|
||||||
|
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${{ matrix.version }} 100
|
||||||
|
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ matrix.version }} 100
|
||||||
- name: Build
|
- name: Build
|
||||||
run: make test
|
run: make test
|
||||||
build-ubuntu-clang:
|
build-ubuntu-clang:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
version: [14, 15]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
- name: Setting up clang version
|
||||||
|
run: |
|
||||||
|
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${{ matrix.version }} 100
|
||||||
|
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${{ matrix.version }} 100
|
||||||
- name: Build
|
- name: Build
|
||||||
run: CC=clang CXX=clang++ make test
|
run: CC=clang CXX=clang++ make test
|
||||||
build-musl:
|
build-musl:
|
||||||
|
|
Loading…
Reference in New Issue