Skip to content

Commit e76d560

Browse files
authored
Merge pull request #28 from queryverse/julia-pkgbutler-updates
Julia Package Butler Updates
2 parents eed6f6e + 38b2e64 commit e76d560

7 files changed

Lines changed: 21 additions & 24 deletions

.github/workflows/jlpkgbutler-butler-workflow.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v2
16-
- uses: julia-actions/setup-julia@latest
17-
with:
18-
version: 1.3.1
1916
- uses: davidanthoff/julia-pkgbutler@releases/v1
2017
with:
2118
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/jlpkgbutler-ci-master-workflow.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
julia-version: [1.0.5, 1.1.1, 1.2.0, 1.3.1]
13+
julia-version: [1.0.5, 1.1.1, 1.2.0, 1.3.1, 1.4.0]
1414
julia-arch: [x64, x86]
1515
os: [ubuntu-latest, windows-latest, macOS-latest]
1616
exclude:
@@ -38,6 +38,12 @@ jobs:
3838
- uses: julia-actions/julia-runtest@latest
3939
env:
4040
PYTHON: ""
41-
- uses: julia-actions/julia-uploadcodecov@latest
42-
env:
43-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
41+
- uses: julia-actions/julia-processcoverage@v1
42+
- uses: codecov/codecov-action@v1
43+
with:
44+
file: ./lcov.info
45+
flags: unittests
46+
name: codecov-umbrella
47+
fail_ci_if_error: false
48+
token: ${{ secrets.CODECOV_TOKEN }}
49+

.github/workflows/jlpkgbutler-ci-pr-workflow.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
julia-version: [1.0.5, 1.1.1, 1.2.0, 1.3.1]
12+
julia-version: [1.0.5, 1.1.1, 1.2.0, 1.3.1, 1.4.0]
1313
julia-arch: [x64, x86]
1414
os: [ubuntu-latest, windows-latest, macOS-latest]
1515
exclude:
@@ -37,12 +37,11 @@ jobs:
3737
- uses: julia-actions/julia-runtest@latest
3838
env:
3939
PYTHON: ""
40-
- uses: julia-actions/julia-uploadcodecov@latest
41-
env:
42-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
43-
formatlint:
44-
runs-on: ubuntu-latest
45-
steps:
46-
- uses: actions/checkout@v2
47-
- uses: julia-actions/setup-julia@latest
48-
- uses: julia-actions/julia-codeformat-lint@releases/v1
40+
- uses: julia-actions/julia-processcoverage@v1
41+
- uses: codecov/codecov-action@v1
42+
with:
43+
file: ./lcov.info
44+
flags: unittests
45+
name: codecov-umbrella
46+
fail_ci_if_error: false
47+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/jlpkgbutler-codeformat-pr-workflow.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2
13-
- uses: julia-actions/setup-julia@latest
1413
- uses: julia-actions/julia-codeformat@releases/v1
1514
- name: Create Pull Request
1615
uses: peter-evans/create-pull-request@v2

.github/workflows/jlpkgbutler-compathelper-workflow.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ jobs:
1111
name: "Run CompatHelper.jl"
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: julia-actions/setup-julia@latest
15-
with:
16-
version: 1.3.1
1714
- name: Pkg.add("CompatHelper")
1815
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
1916
- name: CompatHelper.main()

.github/workflows/jlpkgbutler-docdeploy-workflow.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15-
- uses: julia-actions/setup-julia@latest
16-
with:
17-
version: 1.3.1
1815
- uses: julia-actions/julia-buildpkg@latest
1916
env:
2017
PYTHON: ""

.github/workflows/jlpkgbutler-tagbot-workflow.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ jobs:
99
- uses: JuliaRegistries/TagBot@v1
1010
with:
1111
token: ${{ secrets.GITHUB_TOKEN }}
12+
ssh: ${{ secrets.JLPKGBUTLER_TOKEN }}
13+
branches: true

0 commit comments

Comments
 (0)