require julia 1.2 and update ci

This commit is contained in:
Daniel Schwabeneder 2020-06-27 11:06:43 +02:00
parent f98ef14f15
commit 2dce036477
2 changed files with 39 additions and 13 deletions

View File

@ -11,25 +11,51 @@ defaults:
jobs:
CI:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
env:
GKS_ENCODING: "utf8"
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch}}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.allow-failure }}
strategy:
fail-fast: false
matrix:
julia_version:
- 'nightly'
- '1'
- '1.0'
- '1.2'
os:
- ubuntu-latest
- windows-latest
- macos-latest
arch:
- x64
# - x32
- x86
allow-failure: [false]
include:
- version: 'nightly'
os: ubuntu-latest
arch: x64
allow-failure: true
- version: 'nightly'
os: ubuntu-latest
arch: x86
allow-failure: true
- version: 'nightly'
os: macOS-latest
arch: x64
allow-failure: true
- version: 'nightly'
os: windows-latest
arch: x64
allow-failure: true
- version: 'nightly'
os: windows-latest
arch: x86
allow-failure: true
exclude:
- os: macOS-latest
arch: x86
steps:
# Setup environment

View File

@ -51,7 +51,7 @@ Requires = "1"
Showoff = "0.3.1"
StableRNGs = "0.1.1"
StatsBase = "0.32, 0.33"
julia = "1"
julia = "1.2"
[extras]
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"