Skip to content

Commit

Permalink
Merge pull request #798 from dpogue/x64-ci
Browse files Browse the repository at this point in the history
Win64 CI for NuGet caching
  • Loading branch information
Hoikas committed Jan 29, 2021
2 parents c292a8a + d451c6c commit c8ba46c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
name: ${{ matrix.platform.str }}-${{ matrix.cfg.str }}
strategy:
matrix:
platform:
- { generator: Visual Studio 16 2019, arch: Win32, qt-arch: win32_msvc2019, qt-version: 5.15.2, str: windows-x86 }
- { generator: Visual Studio 16 2019, arch: x64, qt-arch: win64_msvc2019_64, qt-version: 5.15.2, str: windows-x64 }
cfg:
- { external: OFF, type: RelWithDebInfo, str: internal-release }
- { external: OFF, type: Debug, str: internal-debug }
Expand Down Expand Up @@ -52,6 +54,7 @@ jobs:
- name: Upload Artifacts
uses: actions/upload-artifact@v2
if: ${{ matrix.arch == 'Win32' }}
with:
name: plasma-${{ matrix.platform.str }}-${{ matrix.cfg.str }}
path: build/install
Expand Down
2 changes: 1 addition & 1 deletion Sources/Plasma/PubUtilLib/plNetGameLib/Private/plNglAuth.h
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ void NetCliAuthAgeRequest (
//============================================================================
void NetCliAuthGetEncryptionKey (
uint32_t key[],
unsigned size
size_t size
);

//============================================================================
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindVLD.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if(MSVC)

if(${CMAKE_SIZEOF_VOID_P} EQUAL 4)
set(_VLD_LIB "Win32")
elseif(${CMAKE_SIZEOF_VOIDP} EQUAL 8)
elseif(${CMAKE_SIZEOF_VOID_P} EQUAL 8)
set(_VLD_LIB "Win64")
endif()

Expand Down

0 comments on commit c8ba46c

Please sign in to comment.