Skip to content

Commit

Permalink
Create woa.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg authored Mar 12, 2024
1 parent 4a6025a commit 2302168
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/woa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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: |
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

0 comments on commit 2302168

Please sign in to comment.