forked from cloudbase/OpenStackService
-
Notifications
You must be signed in to change notification settings - Fork 0
25 lines (23 loc) · 697 Bytes
/
build.yml
File metadata and controls
25 lines (23 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Build OpenStack Service for Windows ARM64
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
platform: ['x64']
steps:
- uses: actions/checkout@v1
- name: Setup MSBuild.exe
uses: warrenbuckley/Setup-MSBuild@v1
- name: Compile OpenStackService
shell: cmd
run: scripts/build_arm64.cmd
- uses: actions/upload-artifact@v1
with:
name: OpenStackService-x64.exe
path: "x64/SDK10Release/OpenStackService.exe"
- uses: actions/upload-artifact@v1
with:
name: OpenStackService-arm64.exe
path: "arm64/SDK10Release/OpenStackService.exe"