From ff96eac0508655692f200710bb0b068842307577 Mon Sep 17 00:00:00 2001 From: Rob J Goedman Date: Fri, 9 Aug 2024 06:58:43 -0600 Subject: [PATCH] Rel 4.5.1 - cmdsatn 2.35.0 --- .github/workflows/CI.yml | 18 +++++++++--------- README.md | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c7c7ac8..b9e2e0e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -7,7 +7,7 @@ on: pull_request: env: - CMDSTAN: "/home/worker/cmdstan-2.34.1/" + CMDSTAN: "/home/worker/cmdstan-2.35.0/" jobs: test: @@ -41,17 +41,17 @@ jobs: OLDWD=`pwd` cd ~ pwd - wget https://github.com/stan-dev/cmdstan/releases/download/v2.34.1/cmdstan-2.34.1.tar.gz - tar -xzpf cmdstan-2.34.1.tar.gz + wget https://github.com/stan-dev/cmdstan/releases/download/v2.35.0/cmdstan-2.35.0.tar.gz + tar -xzpf cmdstan-2.35.0.tar.gz ls -lia . - ls -lia ./cmdstan-2.34.1 - ls -lia ./cmdstan-2.34.1/make - touch ./cmdstan-2.34.1/make/local - echo "STAN_THREADS=true" > ./cmdstan-2.34.1/make/local + ls -lia ./cmdstan-2.35.0 + ls -lia ./cmdstan-2.35.0/make + touch ./cmdstan-2.35.0/make/local + echo "STAN_THREADS=true" > ./cmdstan-2.35.0/make/local make -C $CMDSTAN build cd $OLDWD env: - CMDSTAN: "/home/runner/cmdstan-2.34.1/" + CMDSTAN: "/home/runner/cmdstan-2.35.0/" - uses: actions/checkout@v2 - uses: julia-actions/setup-julia@v1 with: @@ -70,7 +70,7 @@ jobs: - uses: julia-actions/julia-buildpkg@latest - uses: julia-actions/julia-runtest@latest env: - CMDSTAN: "/home/runner/cmdstan-2.34.1/" + CMDSTAN: "/home/runner/cmdstan-2.35.0/" - uses: julia-actions/julia-processcoverage@v1 if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.num_threads == 1 - uses: codecov/codecov-action@v1 diff --git a/README.md b/README.md index 54b5618..00c32a4 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ pkg> add StanVariational.jl You need a working [cmdstan](https://mc-stan.org/users/interfaces/cmdstan.html) installation, the path of which you should specify either in `CMDSTAN` or `JULIA_CMDSTAN_HOME`, eg in your `~/.julia/config/startup.jl` have a line like ```julia # CmdStan setup -ENV["CMDSTAN"] = expanduser("~/src/cmdstan-2.34.1/") # replace with your path +ENV["CMDSTAN"] = expanduser("~/src/cmdstan-2.35.0/") # replace with your path ``` ## Usage