Skip to content

Commit

Permalink
Merge pull request #376 from JuliaMolSim/actions3
Browse files Browse the repository at this point in the history
Trigger github actions for tags
  • Loading branch information
mfherbst authored Nov 18, 2020
2 parents 237a543 + 5f44ac3 commit f1b2da8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CompatHelper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ jobs:
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
9 changes: 5 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ on:
push:
branches:
- master
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/ # Tags
- staging # Bors
- trying # Bors
tags:
- 'v*'
pull_request:
branches:
- master
schedule:
- cron: '* * * * 6' # Run every Sunday

Expand Down Expand Up @@ -58,6 +57,7 @@ jobs:
- name: Execute serial tests
uses: julia-actions/julia-runtest@latest
if: ${{ matrix.payload == 'serial' }}
continue-on-error: ${{ matrix.version == 'nightly' }}

- name: Execute MPI-parallel tests
run: |
Expand All @@ -68,12 +68,13 @@ jobs:
'
$HOME/.julia/bin/mpiexecjl -np 2 julia --check-bounds=yes --depwarn=yes --project --color=yes --compiled-modules=no -e 'using Pkg; Pkg.test(coverage=true)'
if: ${{ matrix.payload == 'mpi' }}
continue-on-error: ${{ matrix.version == 'nightly' }}

- uses: julia-actions/julia-processcoverage@v1
- uses: julia-actions/julia-uploadcoveralls@v1
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
continue-on-error: true
continue-on-error: true # TODO Until Coveralls upload is fixed
#
# Examples
#
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ on:
push:
branches:
- master
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/ # Tags
- staging # Bors
- trying # Bors
tags:
- 'v*'
pull_request:
branches:
- master

jobs:
docs:
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ LinearMaps = "2"
MPI = "0.15, 0.16"
NCDatasets = "0.10"
NLsolve = "4"
Optim = "0.22, 1"
Optim = "1"
OrderedCollections = "1"
PeriodicTable = "1"
Polynomials = "1"
Expand All @@ -63,7 +63,7 @@ ProgressMeter = "1"
PyCall = "1"
Requires = "1"
Roots = "1"
SpecialFunctions = "0.10, 1.0"
SpecialFunctions = "0.10, 1"
StaticArrays = "0.12"
TimerOutputs = "0.5.6"
julia = "1.4"
Expand Down

0 comments on commit f1b2da8

Please sign in to comment.