Skip to content

Commit

Permalink
Cleanup gh actions and combine CI into one workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
musm committed Dec 16, 2020
1 parent e0ae218 commit 5d66657
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 68 deletions.
64 changes: 60 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on: [push, pull_request]

jobs:

test-hdf5-system:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} (system libhdf5 + mpich)
test-HDF5-system:
name: julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} (system libhdf5 + mpich)
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down Expand Up @@ -36,8 +36,8 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
file: lcov.info

test-hdf5:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
test-HDF5:
name: julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -74,3 +74,59 @@ jobs:
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest

test-MAT-integration:
name: MAT.jl - julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@latest
- name: Clone MAT.jl
uses: actions/checkout@v2
with:
repository: JuliaIO/MAT.jl
path: "MAT.jl"
- name: Run the tests
run: julia --project="MAT.jl" -e "using Pkg; Pkg.develop(PackageSpec(path=\"./\")); Pkg.update(); Pkg.test()"
shell: bash

test-JLD-integration:
name: JLD.jl - julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-buildpkg@latest
- name: Clone JLD.jl
uses: actions/checkout@v2
with:
repository: JuliaIO/JLD.jl
path: "JLD.jl"
- name: Run the tests
run: julia --project="JLD.jl" -e "using Pkg; Pkg.develop(PackageSpec(path=\"./\")); Pkg.update(); Pkg.test()"
shell: bash
6 changes: 2 additions & 4 deletions .github/workflows/Documenter.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
name: CI

name: Docs
on:
push:
branches: [master]
tags: [v*]
pull_request:

jobs:
docs:
name: Documenter
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
60 changes: 0 additions & 60 deletions .github/workflows/Integration.yml

This file was deleted.

0 comments on commit 5d66657

Please sign in to comment.