Browse Source

Add Github Action to build development branch nightly with Homebrew

tags/v0.3.9
Izaak Beekman 6 years ago
parent
commit
2c242b4cef
No known key found for this signature in database GPG Key ID: CB21118C92A64702
1 changed files with 63 additions and 0 deletions
  1. +63
    -0
      .github/workflows/nightly-Homebrew-build.yml

+ 63
- 0
.github/workflows/nightly-Homebrew-build.yml View File

@@ -0,0 +1,63 @@
on:
push:
pull_request:
branches:
- develop
schedule:
- cron: 45 7 * * *

name: Nightly-Homebrew-Build
jobs:
build-OpenBLAS-with-Homebrew:
runs-on: macos-latest
env:
HOMEBREW_DEVELOPER: "ON"
HOMEBREW_DISPLAY_INSTALL_TIMES: "ON"
HOMEBREW_NO_ANALYTICS: "ON"
HOMEBREW_NO_AUTO_UPDATE: "ON"
HOMEBREW_NO_BOTTLE_SOURCE_FALLBACK: "ON"
HOMEBREW_NO_INSTALL_CLEANUP: "ON"

steps:
- name: Random delay for cron job
run: |
delay=$(( RANDOM % 600 ))
printf 'Delaying for %s seconds on event %s' ${delay} "${{ github.event_name }}"
sleep ${delay}
if: github.event_name == 'schedule'

- uses: actions/checkout@v2

- name: Update Homebrew
if: github.event_name != 'pull_request'
run: brew update || true

- name: Install prerequisites
run: brew install --fetch-HEAD --HEAD --only-dependencies --keep-tmp openblas

- name: Install and bottle OpenBLAS
run: brew install --fetch-HEAD --HEAD --build-bottle --keep-tmp openblas

- name: Create bottle
run: brew bottle -v openblas

- name: Upload bottle
uses: actions/upload-artifact@v1
with:
name: openblas--HEAD.catalina.bottle.tar.gz
paht: ./*.bottle.*

- name: Show linkage
run: brew linkage -v openblas

- name: Test openblas
run: brew test --HEAD --verbose openblas

- name: Audit openblas formula
run: |
brew audit --strict openblas
brew cat openblas

- name: Post logs on failure
if: failure()
run: brew gist-logs --with-hostname -v openblas

Loading…
Cancel
Save