Skip to content

Commit

Permalink
ignore cert dir
Browse files Browse the repository at this point in the history
  • Loading branch information
nam20485 committed Oct 17, 2023
1 parent 040b1bb commit fb75aee
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,9 @@ jobs:
preset: linux-release

steps:
- uses: actions/checkout@v3
# install Ninja
- uses: seanmiddleditch/gha-setup-ninja@master
- uses: actions/checkout@v3
# add Visual C++ tools to path
- uses: ilammy/msvc-dev-cmd@v1
#- uses: ilammy/msvc-dev-cmd@v1

# - name: Add cl To Path
# run: |
Expand All @@ -49,10 +47,19 @@ jobs:
git clone --depth 1 https://github.com/Microsoft/vcpkg.git ${{env.VCPKG_ROOT}}
"${{env.VCPKG_ROOT}}/bootstrap-vcpkg.sh"
# only on linux (Windows comes w/ vcpkg installed as part of VS)
if: matrix.os == 'ubuntu-22.04'
#if: matrix.os == 'ubuntu-22.04'

# install Ninja
- name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@master
#if: matrix.os == 'ubuntu-22.04'

- name: Configure
run: cmake --preset ${{matrix.preset}}
- name: Configure
run: cmake --preset ${{matrix.preset}}

- name: Setup VC Tools
uses: ilammy/msvc-dev-cmd@v1
if: matrix.os == 'windows-2022'

- name: Build
run: cmake --build --preset ${{matrix.preset}}
Expand Down

0 comments on commit fb75aee

Please sign in to comment.