Skip to content

Commit

Permalink
Use action to install
Browse files Browse the repository at this point in the history
  • Loading branch information
tschoonj committed Oct 21, 2023
1 parent 86e9236 commit 6128903
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,21 @@ on:

jobs:
visual-studio:
timeout-minutes: 60
timeout-minutes: 180
runs-on: windows-latest
name: Visual Studio
steps:
# - uses: lukka/get-cmake@latest
- name: Install vcpkg deps
uses: lukka/run-vcpkg@v11
with:
vcpkgGitCommitId: "8eb57355a4ffb410a2e94c07b4dca2dffbee8e50" # "2023.10.19"
runVcpkgInstall: true
- uses: actions/checkout@v3
- uses: ilammy/msvc-dev-cmd@v1
- name: Install vcpkg dependencies
run: |
vcpkg install --triplet x64-windows gtkmm plplot pkgconf
# - name: Install vcpkg dependencies
# run: |
# vcpkg install --triplet x64-windows gtkmm plplot pkgconf
- name: Build with meson
run: |
# set PKG_CONFIG_PATH to allow pkgconf to find the pkg-config files
Expand Down
8 changes: 8 additions & 0 deletions vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"dependencies": [
"boost-multi-array",
"plplot",
"gtkmm"
]
}

0 comments on commit 6128903

Please sign in to comment.