This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
OSchip
/
OpenBLAS
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
66
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Create woa.yml
pull/4553/head
Martin Kroeker
GitHub
2 years ago
parent
4a6025af9a
commit
23021684ae
No known key found for this signature in database
GPG Key ID:
B5690EEEBB952194
1 changed files
with
32 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+32
-0
.github/workflows/woa.yml
+ 32
- 0
.github/workflows/woa.yml
View File
@@ -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
Write
Preview
Loading…
Cancel
Save