Test on different versions of Ubuntu

This commit is contained in:
Michał Trojnara 2022-08-07 17:25:29 +02:00
parent 4d476213d4
commit 5d51f0e2c7

View File

@ -15,39 +15,57 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
include: include:
- triplet: x64-linux - id: ubuntu-22.04
triplet: x64-linux
compiler: gcc compiler: gcc
os: ubuntu-latest os: ubuntu-22.04
generator: Unix Makefiles generator: Unix Makefiles
vcpkg_root: vcpkg_root:
- triplet: x64-osx - id: ubuntu-20.04
triplet: x64-linux
compiler: gcc
os: ubuntu-20.04
generator: Unix Makefiles
vcpkg_root:
- id: ubuntu-18.04
triplet: x64-linux
compiler: gcc
os: ubuntu-18.04
generator: Unix Makefiles
vcpkg_root:
- id: macOS
triplet: x64-osx
compiler: clang compiler: clang
os: macOS-latest os: macOS-latest
generator: Unix Makefiles generator: Unix Makefiles
vcpkg_root: /usr/local/share/vcpkg vcpkg_root: /usr/local/share/vcpkg
cache: /Users/runner/.cache/vcpkg/archives cache: /Users/runner/.cache/vcpkg/archives
- triplet: x64-windows - id: windows-x64-vs
triplet: x64-windows
compiler: vs compiler: vs
arch: x64 arch: x64
os: windows-latest os: windows-latest
generator: Ninja generator: Ninja
vcpkg_root: C:/vcpkg vcpkg_root: C:/vcpkg
cache: C:/Users/runneradmin/AppData/Local/vcpkg/archives cache: C:/Users/runneradmin/AppData/Local/vcpkg/archives
- triplet: x86-windows - id: windows-x86-vs
triplet: x86-windows
compiler: vs compiler: vs
arch: x86 arch: x86
os: windows-latest os: windows-latest
generator: Ninja generator: Ninja
vcpkg_root: C:/vcpkg vcpkg_root: C:/vcpkg
cache: C:/Users/runneradmin/AppData/Local/vcpkg/archives cache: C:/Users/runneradmin/AppData/Local/vcpkg/archives
- triplet: x64-windows-static - id: windows-x64-vs-static
triplet: x64-windows-static
compiler: vs compiler: vs
arch: x64 arch: x64
os: windows-latest os: windows-latest
generator: Ninja generator: Ninja
vcpkg_root: C:/vcpkg vcpkg_root: C:/vcpkg
cache: C:/Users/runneradmin/AppData/Local/vcpkg/archives cache: C:/Users/runneradmin/AppData/Local/vcpkg/archives
- triplet: x64-windows - id: windows-x64-mingw
triplet: x64-windows
compiler: mingw compiler: mingw
os: windows-latest os: windows-latest
generator: Ninja generator: Ninja
@ -67,10 +85,10 @@ jobs:
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
path: ${{matrix.cache}} path: ${{matrix.cache}}
key: ${{matrix.triplet}}-${{matrix.compiler}}-${{hashFiles('vcpkg.json')}} key: ${{matrix.id}}-${{hashFiles('vcpkg.json')}}
restore-keys: | restore-keys: |
${{matrix.triplet}}-${{matrix.compiler}}-${{hashFiles('vcpkg.json')}} ${{matrix.id}}-${{hashFiles('vcpkg.json')}}
${{matrix.triplet}}-${{matrix.compiler}}- ${{matrix.id}}-
- name: Configure Visual Studio - name: Configure Visual Studio
if: matrix.compiler == 'vs' if: matrix.compiler == 'vs'
@ -118,7 +136,7 @@ jobs:
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
if: failure() if: failure()
with: with:
name: errors-${{matrix.triplet}}-${{matrix.compiler}} name: errors-${{matrix.id}}
path: ${{github.workspace}}/build/Testing/Temporary/LastTest.log path: ${{github.workspace}}/build/Testing/Temporary/LastTest.log
- name: Install - name: Install
@ -127,5 +145,5 @@ jobs:
- name: Upload the executables - name: Upload the executables
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: ${{env.version}}-${{matrix.triplet}}-${{matrix.compiler}} name: ${{env.version}}-${{matrix.id}}
path: ${{github.workspace}}/dist path: ${{github.workspace}}/dist