Skip to content

Commit

Permalink
Merge pull request #193 from rust-ndarray/github_actions
Browse files Browse the repository at this point in the history
Azure pipeline to GitHub Actions
  • Loading branch information
termoshtt authored May 6, 2020
2 parents 44a3e8d + 4763b2a commit 55b46e9
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 65 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Rust

on:
push:
branches:
- master
pull_request: {}

jobs:
windows-intel-mkl:
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
with:
command: test
args: --features=intel-mkl --no-default-features

macos-intel-mkl:
runs-on: macos-10.15
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
with:
command: test
args: --features=intel-mkl --no-default-features

linux-intel-mkl:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
with:
command: test
args: --features=intel-mkl --no-default-features

linux-netlib:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: apt
run: sudo apt update && sudo apt install -y gfortran
- uses: actions-rs/cargo@v1
with:
command: test
args: --features=netlib --no-default-features

linux-openblas:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: apt
run: sudo apt update && sudo apt install -y gfortran
- uses: actions-rs/cargo@v1
with:
command: test
args: --features=openblas --no-default-features
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ ndarray-linalg
===============
[![Crate](http://meritbadge.herokuapp.com/ndarray-linalg)](https://crates.io/crates/ndarray-linalg)
[![docs.rs](https://docs.rs/ndarray-linalg/badge.svg)](https://docs.rs/ndarray-linalg)
[![Build Status](https://dev.azure.com/rust-ndarray/ndarray-linalg/_apis/build/status/rust-ndarray.ndarray-linalg?branchName=master)](https://dev.azure.com/rust-ndarray/ndarray-linalg/_build/latest?definitionId=1&branchName=master)

Linear algebra package for Rust with [ndarray](https://github.com/bluss/ndarray) based on external LAPACK implementations.

Expand Down
64 changes: 0 additions & 64 deletions azure-pipelines.yml

This file was deleted.

0 comments on commit 55b46e9

Please sign in to comment.