Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test running for MSVC to CI #598

Merged
merged 1 commit into from
Jun 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/github_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,26 @@ jobs:
- name: build artifact
run: msbuild sse2neon.vcxproj -t:rebuild -property:Configuration=Release -property:Platform=ARM64

- name: upload artifact
uses: actions/upload-artifact@master
with:
name: msvc-arm64-artifact
path: ARM64

test_win_msvc:
runs-on: ubuntu-latest
container: linaro/wine-arm64
needs: host_win_msvc
steps:
- name: download artifact
uses: actions/download-artifact@master
with:
name: msvc-arm64-artifact

- name: Run tests
run: wine-arm64 cmd.exe /c 'Release\sse2neon.exe'


coding_style:
runs-on: ubuntu-20.04
steps:
Expand Down