Skip to content

Commit

Permalink
Add support for self hosted arm64 GitHub actions runner
Browse files Browse the repository at this point in the history
  • Loading branch information
matusnovak committed Jul 15, 2020
1 parent c72325a commit 8eede36
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,30 +19,22 @@ jobs:
include:
- name: 'Windows x64'
os: windows-latest
triplet: x64-windows
vcpkg_dir: 'C:\vcpkg'
suffix: 'windows-win32'
generator: 'Visual Studio 16 2019'
arch: '-A x64'
- name: 'Windows x86'
os: windows-latest
triplet: x86-windows
vcpkg_dir: 'C:\vcpkg'
suffix: 'windows-win64'
generator: 'Visual Studio 16 2019'
arch: '-A Win32'
- name: 'Linux x64'
os: ubuntu-latest
triplet: x64-linux
suffix: 'linux-x86_64'
vcpkg_dir: '/usr/local/share/vcpkg'
generator: 'Unix Makefiles'
arch: ''
- name: 'Mac OSX x64'
os: macos-latest
triplet: x64-osx
suffix: 'osx-x86_64'
vcpkg_dir: '/usr/local/share/vcpkg'
generator: 'Unix Makefiles'
arch: ''
- name: 'Linux ARM64'
os: [self-hosted, linux, arm64]
generator: 'Unix Makefiles'
arch: ''

Expand Down

0 comments on commit 8eede36

Please sign in to comment.