Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
OpenBLAS 0.3.10 (#131) and update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aadler authored and jeroen committed Jul 27, 2020
1 parent bf9e096 commit 4124564
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 3 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,51 @@
name: main

on:
push:
pull_request:

jobs:
build:
runs-on: windows-latest
strategy:
matrix:
include: [
{ msystem: mingw64 },
{ msystem: mingw32 }
]
defaults:
run:
shell: msys2 {0}
steps:

- uses: actions/checkout@v2
with:
fetch-depth: 0

- uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.msystem }}
install: git
update: true

- name: CI-Build
run: MINGW_INSTALLS=${{ matrix.msystem }} ./ci-build.sh
env:
BUILD_URL: dummy
DEPLOY_PROVIDER: bintray
BINTRAY_TARGET: rtools
BINTRAY_REPOSITORY: ${{ matrix.msystem }}
PACMAN_REPOSITORY: ${{ matrix.msystem }}
BINTRAY_PACKAGE: ${{ matrix.msystem }}

- name: "Upload binary package"
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.msystem }}-repo
path: artifacts/

- name: "Upload source package"
uses: actions/upload-artifact@v2
with:
name: sources
path: sourcepkg/
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Expand Up @@ -21,6 +21,8 @@ jobs:
SET PATH=c:\rtools40\usr\bin;%PATH%
rmdir /s /Q "C:\Program Files\Boost"
copy /y pacman.conf C:\rtools40\etc\pacman.conf
C:\rtools40\usr\bin\curl -OSsl "http://repo.msys2.org/msys/x86_64/msys2-keyring-r21.b39fb11-1-any.pkg.tar.xz"
C:\rtools40\usr\bin\pacman -U --noconfirm msys2-keyring-r21.b39fb11-1-any.pkg.tar.xz && rm msys2-keyring-r21.b39fb11-1-any.pkg.tar.xz
C:\rtools40\usr\bin\pacman -Syyuu --noconfirm --ask 20
C:\rtools40\usr\bin\pacman -Syyuu --noconfirm --ask 20
C:\rtools40\usr\bin\pacman --noconfirm --needed -S git ca-certificates
Expand Down
6 changes: 3 additions & 3 deletions mingw-w64-openblas/PKGBUILD
Expand Up @@ -4,8 +4,8 @@
_realname=OpenBLAS
pkgbase=mingw-w64-openblas
pkgname="${MINGW_PACKAGE_PREFIX}-openblas"
pkgver=0.3.9
pkgrel=1
pkgver=0.3.10
pkgrel=2
pkgdesc="An optimized BLAS library based on GotoBLAS2 1.13 BSD, providing optimized blas, lapack, and cblas (mingw-w64)"
arch=('any')
url="https://www.openblas.net/"
Expand All @@ -22,7 +22,7 @@ source=(${_realname}-${pkgver}.tar.gz::https://github.com/xianyi/OpenBLAS/archiv
001-defaultlib-not-for-gcc.patch
002-lgfortran-requires-lquadmath.patch)
install=${_realname}.install
sha256sums=('17D4677264DFBC4433E97076220ADC79B050E4F8A083EA3F853A53AF253BC380'
sha256sums=('0484d275f87e9b8641ff2eecaa9df2830cbe276ac79ad80494822721de6e1693'
'd9192818d0b0a9e7cbed7cc2572dfd380aa311be5ce4d012c0cb55211013db37'
'ab1c10a66b4d0332f2339f1169c0e3ebd48d9b8bf7afaec3f6a0d62099b52941')

Expand Down

0 comments on commit 4124564

Please sign in to comment.