name: CI on: push: pull_request: env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) BUILD_TYPE: Release jobs: build: strategy: fail-fast: false matrix: include: - triplet: x64-linux os: ubuntu-latest vcpkg_root: /usr/local/share/vcpkg - triplet: x64-osx os: macOS-latest vcpkg_root: /usr/local/share/vcpkg cache: /Users/runner/.cache/vcpkg/archives - triplet: x64-windows arch: x64 os: windows-latest vcpkg_root: C:/vcpkg cache: C:/Users/runneradmin/AppData/Local/vcpkg/archives - triplet: x86-windows arch: x86 os: windows-latest vcpkg_root: C:/vcpkg cache: C:/Users/runneradmin/AppData/Local/vcpkg/archives runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 - name: Cache the vcpkg archives if: matrix.os != 'ubuntu-latest' uses: actions/cache@v3 with: path: ${{matrix.cache}} key: ${{matrix.triplet}}-${{hashFiles('vcpkg.json')}} restore-keys: | ${{matrix.triplet}}-${{hashFiles('vcpkg.json')}} ${{matrix.triplet}}- - name: Configure VS Toolchain (Windows) if: matrix.os == 'windows-latest' uses: ilammy/msvc-dev-cmd@v1 with: arch: ${{matrix.arch}} - name: Install apt dependencies (Linux) if: matrix.os == 'ubuntu-latest' run: sudo apt-get install -y libssl-dev libcurl4-openssl-dev faketime - name: Setup the oldest supported version of cmake (macOS) if: matrix.os == 'macOS-latest' uses: jwlawson/actions-setup-cmake@v1.12 with: cmake-version: '3.13.0' - name: Configure CMake (Linux) if: matrix.os == 'ubuntu-latest' run: cmake -S ${{github.workspace}} -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/dist - name: Configure CMake (macOS) if: matrix.os == 'macOS-latest' run: cmake -S ${{github.workspace}} -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/dist -DCMAKE_TOOLCHAIN_FILE=${{matrix.vcpkg_root}}/scripts/buildsystems/vcpkg.cmake - name: Configure CMake (Windows) if: matrix.os == 'windows-latest' run: cmake -G Ninja -S ${{github.workspace}} -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/dist -DCMAKE_TOOLCHAIN_FILE=${{matrix.vcpkg_root}}/scripts/buildsystems/vcpkg.cmake - name: Build run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} - name: List files (Linux/macOS) if: matrix.os != 'windows-latest' run: find .. -ls - name: List files (Windows) if: matrix.os == 'windows-latest' run: Get-ChildItem -Recurse -Name .. - name: Test working-directory: ${{github.workspace}}/build run: ctest -C ${{env.BUILD_TYPE}} - name: Upload the errors uses: actions/upload-artifact@v3 if: failure() with: name: errors-${{matrix.triplet}} path: ${{github.workspace}}/build/Testing/Temporary/LastTest.log - name: Install run: cmake --install ${{github.workspace}}/build - name: Upload the executables uses: actions/upload-artifact@v3 with: name: osslsigncode-${{matrix.triplet}} path: ${{github.workspace}}/dist