Merge c47f57bac5
into 453b9e4886
This commit is contained in:
commit
cb5e6197c4
|
@ -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…
Reference in New Issue