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

Commit 0b9005e

Browse files
committed
Rel 2.1.1
1 parent d0c91b7 commit 0b9005e

File tree

4 files changed

+60
-1
lines changed

4 files changed

+60
-1
lines changed

.github/workflows/CI.yml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
runs-on: ${{ matrix.os }}
12+
continue-on-error: ${{ matrix.version == 'nightly' }}
13+
strategy:
14+
matrix:
15+
version:
16+
- '1'
17+
#- nightly
18+
os:
19+
- ubuntu-latest
20+
#- macOS-latest
21+
#- windows-latest
22+
arch:
23+
- x86
24+
- x64
25+
exclude:
26+
- os: windows-latest
27+
arch: x86
28+
- os: macOS-latest
29+
arch: x86
30+
steps:
31+
- uses: actions/checkout@v2
32+
- uses: julia-actions/setup-julia@v1
33+
with:
34+
version: ${{ matrix.version }}
35+
arch: ${{ matrix.arch }}
36+
- uses: actions/cache@v1
37+
env:
38+
cache-name: cache-artifacts
39+
with:
40+
path: ~/.julia/artifacts
41+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
42+
restore-keys: |
43+
${{ runner.os }}-test-${{ env.cache-name }}-
44+
${{ runner.os }}-test-
45+
${{ runner.os }}-
46+
- uses: julia-actions/julia-buildpkg@latest
47+
- uses: julia-actions/julia-runtest@latest
48+
- uses: julia-actions/julia-processcoverage@v1
49+
if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.num_threads == 1
50+
- uses: codecov/codecov-action@v1
51+
if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.num_threads == 1
52+
with:
53+
file: lcov.info
54+
- uses: coverallsapp/github-action@master
55+
if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.num_threads == 1
56+
with:
57+
github-token: ${{ secrets.GITHUB_TOKEN }}
58+
path-to-lcov: lcov.info

.github/workflows/CompatHelper.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CompatHelper
22

33
on:
44
schedule:
5-
- cron: '00 * * * *'
5+
- cron: '00 00 * * *'
66
issues:
77
types: [opened, reopened]
88

@@ -31,3 +31,4 @@ jobs:
3131
run(`julia --project=docs -e "import Pkg; Pkg.instantiate(); Pkg.update()"`);
3232
end
3333
'
34+
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)