Skip to content

Commit d063a34

Browse files
committed
Several improvements related to CI and GitHub Actions
1 parent 38b169c commit d063a34

File tree

4 files changed

+20
-38
lines changed

4 files changed

+20
-38
lines changed

.appveyor.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/TagBot.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 0 * * * *
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
57
jobs:
68
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
710
runs-on: ubuntu-latest
811
steps:
912
- uses: JuliaRegistries/TagBot@v1
1013
with:
1114
token: ${{ secrets.GITHUB_TOKEN }}
15+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.github/workflows/ci.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,19 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
version:
18-
# - '1.5'
19-
- '1'
18+
- '1.5'
19+
- '1' # automatically expands to the latest stable 1.x release of Julia.
2020
- 'nightly'
2121
os:
2222
- ubuntu-latest
23+
- macos-latest
24+
- windows-latest
2325
arch:
2426
- x64
27+
- x86
28+
exclude:
29+
- os: macOS-latest
30+
arch: x86 # 32-bit Julia binaries are not available on macOS
2531
steps:
2632
- uses: actions/checkout@v2
2733
- uses: julia-actions/setup-julia@v1
@@ -52,6 +58,10 @@ jobs:
5258
- uses: julia-actions/setup-julia@v1
5359
with:
5460
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: ""
5565
- run: |
5666
julia --project=docs -e '
5767
using Pkg
@@ -65,4 +75,4 @@ jobs:
6575
- run: julia --project=docs docs/make.jl
6676
env:
6777
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
68-
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
78+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://chriselrod.github.io/LoopVectorization.jl/stable)
44
[![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)
76
[![Codecov](https://codecov.io/gh/chriselrod/LoopVectorization.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/chriselrod/LoopVectorization.jl)
87

98
## Installation

0 commit comments

Comments
 (0)