Skip to content

Commit

Permalink
all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMirzayanov committed Sep 4, 2023
1 parent 3c2d852 commit 93fbb69
Show file tree
Hide file tree
Showing 4 changed files with 182 additions and 0 deletions.
182 changes: 182 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,188 @@ env:
TEST_REF_FORBID_GEN_REFS: true

jobs:
tests-ubuntu1804-gpp:
strategy:
matrix:
os: [ubuntu-18.04]
compiler: [g++]
version: [7, 9, 10]
name: Use ${{ matrix.compiler }}-${{ matrix.version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
cd tests
bash ./run.sh ${{ matrix.compiler }} v${{ matrix.version }}
tests-ubuntu1804-clang:
strategy:
matrix:
os: [ubuntu-18.04]
compiler: [clang++]
version: [9]
name: Use ${{ matrix.compiler }}-${{ matrix.version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
cd tests
bash ./run.sh ${{ matrix.compiler }} v${{ matrix.version }}
tests-ubuntu2204-gpp:
strategy:
matrix:
os: [ubuntu-22.04]
compiler: [g++]
version: [9, 10, 11]
name: Use ${{ matrix.compiler }}-${{ matrix.version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
cd tests
bash ./run.sh ${{ matrix.compiler }} v${{ matrix.version }}
tests-ubuntu2204-clang:
strategy:
matrix:
os: [ubuntu-22.04]
compiler: [clang++]
version: [12, 13, 14]
name: Use ${{ matrix.compiler }}-${{ matrix.version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
cd tests
bash ./run.sh ${{ matrix.compiler }} v${{ matrix.version }}
tests-ubuntu1804-gpp-32:
strategy:
matrix:
os: [ubuntu-18.04]
compiler: [g++]
version: [7, 9, 10]
name: Use ${{ matrix.compiler }}-${{ matrix.version }} -m32 on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
sudo apt-get install gcc-${{ matrix.version }}-multilib g++-${{ matrix.version }}-multilib
cd tests
bash ./run.sh ${{ matrix.compiler }} v${{ matrix.version }} 32
tests-ubuntu1804-clang-32:
strategy:
matrix:
os: [ubuntu-18.04]
compiler: [clang++]
version: [9]
name: Use ${{ matrix.compiler }}-${{ matrix.version }} -m32 on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
sudo apt-get install gcc-multilib g++-multilib
cd tests
bash ./run.sh ${{ matrix.compiler }} v${{ matrix.version }} 32
tests-ubuntu2204-gpp-32:
strategy:
matrix:
os: [ubuntu-22.04]
compiler: [g++]
version: [9, 10, 11]
name: Use ${{ matrix.compiler }}-${{ matrix.version }} -m32 on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
sudo apt-get install gcc-${{ matrix.version }}-multilib g++-${{ matrix.version }}-multilib
cd tests
bash ./run.sh ${{ matrix.compiler }} v${{ matrix.version }} 32
tests-ubuntu2204-clang-32:
strategy:
matrix:
os: [ubuntu-22.04]
compiler: [clang++]
version: [12, 13, 14]
name: Use ${{ matrix.compiler }}-${{ matrix.version }} -m32 on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
sudo apt-get install gcc-multilib g++-multilib
cd tests
bash ./run.sh ${{ matrix.compiler }} v${{ matrix.version }} 32
tests-macos11-gpp:
strategy:
matrix:
os: [macos-11]
compiler: [g++]
version: [10, 11, 12]
name: Use ${{ matrix.compiler }}-${{ matrix.version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
cd tests
bash ./run.sh ${{ matrix.compiler }} v${{ matrix.version }}
tests-macos11-clang:
strategy:
matrix:
os: [macos-11]
compiler: [clang++]
name: Use ${{ matrix.compiler }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
cd tests
bash ./run.sh ${{ matrix.compiler }}
tests-macos12-gpp:
strategy:
matrix:
os: [macos-12]
compiler: [g++]
name: Use ${{ matrix.compiler }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
cd tests
bash ./run.sh ${{ matrix.compiler }}
tests-macos12-clang:
strategy:
matrix:
os: [macos-12]
compiler: [clang++]
version: [12, 13, 14]
name: Use ${{ matrix.compiler }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: |
cd tests
bash ./run.sh ${{ matrix.compiler }}
tests-windows-2019:
strategy:
matrix:
Expand Down
Binary file added tests/lib/msvc-2017-include.7z
Binary file not shown.
Binary file added tests/lib/windows-kit-10.0.16299.0-include.7z
Binary file not shown.
Binary file added tests/lib/windows-kit-10.0.17134.0-include.7z
Binary file not shown.

0 comments on commit 93fbb69

Please sign in to comment.