Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #140

Merged
merged 1 commit into from
May 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 11 additions & 12 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
env:
JULIA_VERSION: "1.6.2"
JULIA_MINOR_VERSION: "1.6"
JULIA_VERSION: "1.7.2"
OPENBLAS_NUM_THREADS: 1
GKSwstype: nul

Expand Down Expand Up @@ -31,12 +30,12 @@ steps:
mkdir examples/Lorenz/depot
export JULIA_DEPOT_PATH="$$(pwd)/examples/Lorenz/depot:$$JULIA_DEPOT_PATH"

julia --color=yes --project -e '
println("--- Instantiating Project")
julia --color=yes --project=examples/Lorenz -e '
println("--- Developing Project")
using Pkg;
Pkg.instantiate()
Pkg.activate("examples/Lorenz")
Pkg.instantiate()
Pkg.develop(path=".")
println("--- Instantiating Project")
# Pkg.instantiate()
println("+++ Running Lorenz")
include("examples/Lorenz/Lorenz_example.jl")'
artifact_paths:
Expand All @@ -56,12 +55,12 @@ steps:
mkdir examples/Emulator/GaussianProcess/depot
export JULIA_DEPOT_PATH="$$(pwd)/examples/Emulator/GaussianProcess/depot:$JULIA_DEPOT_PATH"

julia --color=yes --project -e '
println("--- Instantiating Project")
julia --color=yes --project=examples/Emulator/GaussianProcess -e '
println("--- Developing Project")
using Pkg;
Pkg.instantiate()
Pkg.activate("examples/Emulator/GaussianProcess")
Pkg.instantiate()
Pkg.develop(path=".")
println("--- Instantiating Project")
# Pkg.instantiate()
println("+++ Running Learn Noise")
include("examples/Emulator/GaussianProcess/learn_noise.jl")
println("+++ Running PlotGP")
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: 1.6
version: 1.7.2
- name: Cache artifacts
uses: actions/cache@v1
env:
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
timeout-minutes: 60
strategy:
fail-fast: true

runs-on: ubuntu-latest

steps:
Expand All @@ -22,12 +22,12 @@ jobs:

- name: Checkout
uses: actions/checkout@v2

- name: Set up Julia
uses: julia-actions/setup-julia@v1
with:
version: 1.6
version: 1.7.2

- name: Install Julia Project Packages
# we add this ENV varaible to force PyCall to download and use Conda rather than
# the system python (default on Linux), see the PyCall documentation
Expand Down Expand Up @@ -76,12 +76,12 @@ jobs:

- name: Checkout
uses: actions/checkout@v2

- name: Set up Julia
uses: julia-actions/setup-julia@v1
with:
version: 1.6
version: 1.7.2

- name: Install Julia Project Packages
env:
PYTHON: ""
Expand All @@ -104,7 +104,7 @@ jobs:
timeout-minutes: 60
strategy:
fail-fast: true

runs-on: windows-latest

steps:
Expand All @@ -115,12 +115,12 @@ jobs:

- name: Checkout
uses: actions/checkout@v2

- name: Set up Julia
uses: julia-actions/setup-julia@v1
with:
version: 1.6
version: 1.7.2

- name: Install Julia Project Packages
env:
PYTHON: ""
Expand Down
Loading