File tree Expand file tree Collapse file tree 4 files changed +20
-38
lines changed Expand file tree Collapse file tree 4 files changed +20
-38
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,13 +15,19 @@ 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
+ - macos-latest
24
+ - windows-latest
23
25
arch :
24
26
- x64
27
+ - x86
28
+ exclude :
29
+ - os : macOS-latest
30
+ arch : x86 # 32-bit Julia binaries are not available on macOS
25
31
steps :
26
32
- uses : actions/checkout@v2
27
33
- uses : julia-actions/setup-julia@v1
52
58
- uses : julia-actions/setup-julia@v1
53
59
with :
54
60
version : ' 1'
61
+ - run : julia --color=yes -e 'using Pkg; VERSION >= v"1.5-" && !isdir(joinpath(DEPOT_PATH[1], "registries", "General")) && Pkg.Registry.add("General")'
62
+ shell : bash
63
+ env :
64
+ JULIA_PKG_SERVER : " "
55
65
- run : |
56
66
julia --project=docs -e '
57
67
using Pkg
65
75
- run : julia --project=docs docs/make.jl
66
76
env :
67
77
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
68
- DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
78
+ 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