Skip to content

Commit

Permalink
Correction of architecture test
Browse files Browse the repository at this point in the history
  • Loading branch information
jmkerloch authored Oct 9, 2020
1 parent 201d751 commit 01344ec
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/releasesWindows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
architecture: [x64,x86]
include:
- os: windows-latest
triplet: x64-windows
vcpkgCommitId: 'ee17a685087a6886e5681e355d36cd784f0dd2c8'
vcpkgPackages: openssl curl wxwidgets boost-test

Expand All @@ -40,8 +39,8 @@ jobs:

- name: Configure with VCPKG
run: |
$ARCH='x64'
If(${{ matrix.architecture }} -eq 'x86') {$ARCH='Win32'}
$ARCH=${{ matrix.architecture }}
If($ARCH -eq 'x86') {$ARCH='Win32'}
cmake -B _build -S src -A $ARCH -DCMAKE_TOOLCHAIN_FILE=${{ steps.runvcpkg.outputs.RUNVCPKG_VCPKG_ROOT_OUT }}/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=${{ matrix.architecture }}-windows -DCMAKE_BUILD_TYPE=release
- name: Build
Expand Down

0 comments on commit 01344ec

Please sign in to comment.