Skip to content

Commit f97ec89

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents a2b2386 + 72f0dc7 commit f97ec89

File tree

2 files changed

+19
-14
lines changed

2 files changed

+19
-14
lines changed

.github/workflows/CI.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88

99
env:
10-
JULIA_CMDSTAN_HOME: "/home/worker/cmdstan-2.28.2/"
10+
JULIA_CMDSTAN_HOME: "/home/worker/cmdstan-2.31.0/"
1111

1212
jobs:
1313
test:
@@ -41,18 +41,18 @@ jobs:
4141
OLDWD=`pwd`
4242
cd ~
4343
pwd
44-
wget https://github.com/stan-dev/cmdstan/releases/download/v2.28.2/cmdstan-2.28.2.tar.gz
45-
tar -xzpf cmdstan-2.28.2.tar.gz
44+
wget https://github.com/stan-dev/cmdstan/releases/download/v2.31.0/cmdstan-2.31.0.tar.gz
45+
tar -xzpf cmdstan-2.31.0.tar.gz
4646
ls -lia .
47-
ls -lia ./cmdstan-2.28.2
48-
ls -lia ./cmdstan-2.28.2/make
49-
touch ./cmdstan-2.28.2/make/local
50-
echo "STAN_THREADS=true" > ./cmdstan-2.28.2/make/local
51-
cat ./cmdstan-2.28.2/make/local
47+
ls -lia ./cmdstan-2.31.0
48+
ls -lia ./cmdstan-2.31.0/make
49+
touch ./cmdstan-2.31.0/make/local
50+
echo "STAN_THREADS=true" > ./cmdstan-2.31.0/make/local
51+
cat ./cmdstan-2.31.0/make/local
5252
make -C $JULIA_CMDSTAN_HOME build
5353
cd $OLDWD
5454
env:
55-
JULIA_CMDSTAN_HOME: "/home/runner/cmdstan-2.28.2/"
55+
JULIA_CMDSTAN_HOME: "/home/runner/cmdstan-2.31.0/"
5656
- uses: actions/checkout@v2
5757
- uses: julia-actions/setup-julia@v1
5858
with:
@@ -71,7 +71,7 @@ jobs:
7171
- uses: julia-actions/julia-buildpkg@latest
7272
- uses: julia-actions/julia-runtest@latest
7373
env:
74-
JULIA_CMDSTAN_HOME: "/home/runner/cmdstan-2.28.2/"
74+
JULIA_CMDSTAN_HOME: "/home/runner/cmdstan-2.31.0/"
7575
- uses: julia-actions/julia-processcoverage@v1
7676
if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.num_threads == 1
7777
- uses: codecov/codecov-action@v1

Project.toml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,24 @@ Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
1010
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
1111
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
1212
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
13-
StanSample = "c1514b29-d3a0-5178-b312-660c88baa699"
13+
#StanSample = "c1514b29-d3a0-5178-b312-660c88baa699"
1414
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1515
StatsFuns = "4c63d2b9-4356-54db-8cca-17b64c39e42c"
1616
#StatsPlots = "f3b207a7-027a-5e70-b257-86293d7955fd"
17-
StatsPlots = "f3b207a7-027a-5e70-b257-86293d7955fd"
1817
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1918

2019
[compat]
2120
CSV = "0.10"
2221
DataFrames = "1.4"
2322
Distributions = "0.25"
2423
JSON = "0.21"
25-
StanSample = "6, 7"
24+
#StanSample = "7"
2625
StatsFuns = "1.0"
27-
StatsPlots = "0.15"
2826
julia = "1"
27+
28+
[extras]
29+
StanSample = "c1514b29-d3a0-5178-b312-660c88baa699"
30+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
31+
32+
[targets]
33+
test = ["StanSample", "Test"]

0 commit comments

Comments
 (0)