From 63ad5270cb57af636815c44347b50b437e150d39 Mon Sep 17 00:00:00 2001 From: Gregory Wagner Date: Thu, 2 Nov 2023 14:30:09 -0600 Subject: [PATCH] Update ymls --- .buildkite/pipeline.yml | 3 +++ .github/workflows/Documenter.yml | 1 + .github/workflows/ci.yml | 10 +++++++++- 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 42109ec8..19844d16 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -28,6 +28,9 @@ steps: - label: "Run all the tests" key: "all the tests" + env: + CUDA_VISIBLE_DEVICES: "-1" + TEST_GROUP: "jra55" command: - julia --project -e 'using Pkg; Pkg.test()' diff --git a/.github/workflows/Documenter.yml b/.github/workflows/Documenter.yml index 7550171d..108dd1a8 100644 --- a/.github/workflows/Documenter.yml +++ b/.github/workflows/Documenter.yml @@ -32,3 +32,4 @@ jobs: DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key JULIA_DEBUG: Documenter run: julia --color=yes --project=docs/ docs/make.jl + diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 33ce4400..40486c61 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,8 +46,16 @@ jobs: ${{ runner.os }}-test- ${{ runner.os }}- - uses: julia-actions/julia-buildpkg@v1 - - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v2 + - name: Install dependencies + run: | + julia --color=yes --project -e 'using Pkg; Pkg.instantiate()' + julia --color=yes --project -e 'using Pkg; Pkg.precompile()' + julia --color=yes --project -e 'using Pkg; Pkg.test()' + env: + TEST_GROUP: "downloading" + with: file: lcov.info +