Skip to content

Commit

Permalink
Using github actions to rewrite: WinCI
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanson committed Sep 19, 2023
1 parent 2d6bdae commit 460afd1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,19 @@ jobs:
- uses: actions/checkout@v3
- name: Run ci-asm
run: make ci-asm

windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Dep
shell: pwsh
# https://github.com/ScoopInstaller/Install#for-admin
run: |
iex "& {$(irm get.scoop.sh)} -RunAsAdmin"
scoop install llvm
scoop install yasm
Get-Command clang
Get-Command yasm
- name: Run ci-asm
run: make ci-asm
8 changes: 0 additions & 8 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,3 @@ jobs:
bash <(curl -s https://codecov.io/bash) &&
echo "Uploaded code coverage"
displayName: Run code coverage
- job: WinCI
pool:
vmImage: 'windows-2019'
steps:
- template: devtools/azure/windows-dependencies.yml
- script: make ci-asm
displayName: Run unit tests

0 comments on commit 460afd1

Please sign in to comment.