File tree Expand file tree Collapse file tree 4 files changed +35
-41
lines changed Expand file tree Collapse file tree 4 files changed +35
-41
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
name : TagBot
2
2
on :
3
- schedule :
4
- - cron : 0 * * * *
3
+ issue_comment :
4
+ types :
5
+ - created
6
+ workflow_dispatch :
5
7
jobs :
6
8
TagBot :
9
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
7
10
runs-on : ubuntu-latest
8
11
steps :
9
12
- uses : JuliaRegistries/TagBot@v1
10
13
with :
11
14
token : ${{ secrets.GITHUB_TOKEN }}
15
+ ssh : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change @@ -15,11 +15,12 @@ jobs:
15
15
fail-fast : false
16
16
matrix :
17
17
version :
18
- # - '1.5'
19
- - ' 1'
18
+ - ' 1.5'
19
+ - ' 1' # automatically expands to the latest stable 1.x release of Julia.
20
20
- ' nightly'
21
21
os :
22
22
- ubuntu-latest
23
+ - windows-latest
23
24
arch :
24
25
- x64
25
26
steps :
52
53
- uses : julia-actions/setup-julia@v1
53
54
with :
54
55
version : ' 1'
56
+ - run : julia --color=yes -e 'using Pkg; VERSION >= v"1.5-" && !isdir(joinpath(DEPOT_PATH[1], "registries", "General")) && Pkg.Registry.add("General")'
57
+ shell : bash
58
+ env :
59
+ JULIA_PKG_SERVER : " "
60
+ - run : |
61
+ julia --project=docs -e '
62
+ using Pkg
63
+ Pkg.develop(PackageSpec(path=pwd()))
64
+ Pkg.instantiate()'
65
+ - run : julia --project=docs docs/make.jl
66
+ env :
67
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
68
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
69
+ doctests :
70
+ name : Doctests
71
+ runs-on : ubuntu-latest
72
+ steps :
73
+ - uses : actions/checkout@v2
74
+ - uses : julia-actions/setup-julia@v1
75
+ with :
76
+ version : ' nightly'
77
+ - run : julia --color=yes -e 'using Pkg; VERSION >= v"1.5-" && !isdir(joinpath(DEPOT_PATH[1], "registries", "General")) && Pkg.Registry.add("General")'
78
+ shell : bash
79
+ env :
80
+ JULIA_PKG_SERVER : " "
55
81
- run : |
56
82
julia --project=docs -e '
57
83
using Pkg
62
88
using Documenter: doctest
63
89
using LoopVectorization
64
90
doctest(LoopVectorization)'
65
- - run : julia --project=docs docs/make.jl
66
- env :
67
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
68
- DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Stable] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://chriselrod.github.io/LoopVectorization.jl/stable )
4
4
[ ![ Latest] ( https://img.shields.io/badge/docs-latest-blue.svg )] ( https://chriselrod.github.io/LoopVectorization.jl/latest )
5
- [ ![ Build Status] ( https://travis-ci.com/chriselrod/LoopVectorization.jl.svg?branch=master )] ( https://travis-ci.com/chriselrod/LoopVectorization.jl )
6
- [ ![ Build Status] ( https://ci.appveyor.com/api/projects/status/github/chriselrod/LoopVectorization.jl?svg=true )] ( https://ci.appveyor.com/project/chriselrod/LoopVectorization-jl )
5
+ [ ![ Build Status] ( https://github.com/chriselrod/LoopVectorization.jl/workflows/CI/badge.svg )] ( https://github.com/chriselrod/LoopVectorization.jl/actions?query=workflow%3ACI )
7
6
[ ![ Codecov] ( https://codecov.io/gh/chriselrod/LoopVectorization.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/chriselrod/LoopVectorization.jl )
8
7
9
8
## Installation
You can’t perform that action at this time.
0 commit comments