From 5f44ac3e658419d7f0a93cbe232a0efd0163c89c Mon Sep 17 00:00:00 2001 From: "Michael F. Herbst" Date: Wed, 18 Nov 2020 08:29:58 +0100 Subject: [PATCH] Trigger github actions for tags --- .github/workflows/CompatHelper.yaml | 1 + .github/workflows/ci.yaml | 9 +++++---- .github/workflows/documentation.yaml | 5 ++--- Project.toml | 4 ++-- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/CompatHelper.yaml b/.github/workflows/CompatHelper.yaml index dd821e6839..275422d01a 100644 --- a/.github/workflows/CompatHelper.yaml +++ b/.github/workflows/CompatHelper.yaml @@ -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()' diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index eb6878e5a7..dfe35deec9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 @@ -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: | @@ -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 # diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index 265a423f35..f6fbb972a7 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -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: diff --git a/Project.toml b/Project.toml index 20c07147e8..debe28cef7 100644 --- a/Project.toml +++ b/Project.toml @@ -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" @@ -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"