Skip to content

Commit

Permalink
Try reconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Dec 24, 2023
1 parent 1b1acf5 commit 46e45da
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,17 @@ concurrency:

jobs:
publish-doc:
runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
config:
- os: ubuntu-20.04
vcpkg_triplet: x64-linux-release
- os: macos-11
vcpkg_triplet: x64-osx-release
- os: windows-2019
vcpkg_triplet: x64-windows-release
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -36,13 +42,13 @@ jobs:
- name: Install latest CMake and Ninja
uses: lukka/[email protected]

- name: Install OpenSSL
- name: vcpkg build
uses: johnwason/vcpkg-action@v5
id: vcpkg
with:
pkgs: cli11
triplet: amd64-windows-static
cache-key: ${{ runner.os }}-amd64-vcpkg
triplet: ${{ matrix.config.vcpkg_triplet }}
cache-key: ${{ matrix.config.os }}
token: ${{ github.token }}

- name: Build with CMake
Expand Down

0 comments on commit 46e45da

Please sign in to comment.