Skip to content

Commit

Permalink
chore(ci): msbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
saschanaz committed Aug 24, 2024
1 parent 5873fbb commit a3bc659
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ on: [push, pull_request]
name: CI

jobs:
build:
name: Test
runs-on: windows-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
with:
submodules: recursive

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2

- name: Build
run: msbuild cpp/SampleIME.sln -target:SampleIME /property:Platform=x64

test:
name: Test
runs-on: windows-latest
Expand Down

0 comments on commit a3bc659

Please sign in to comment.