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

[WIP] Add github workflow for Windows on Arm #4553

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
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
35 changes: 35 additions & 0 deletions .github/workflows/woa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: windows on arm

on: [push, pull_request]

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

permissions:
contents: read # to fetch code (actions/checkout)

jobs:
build:
if: "github.repository == 'OpenMathLib/OpenBLAS'"
runs-on: windows-latest
strategy:
matrix:
platform: [arm64]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install LLVM
run: |
echo %PROCESSOR_ARCHITECTURE%
systeminfo
gcc -v
#wget https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.1/LLVM-18.1.1-woa64.exe
#LLVM-18.1.1-woa64.exe

- name: Build
run: |
make CC=clang-cl FC=flang-new

Loading