|
7 | 7 | - JuliaCI/julia#v1:
|
8 | 8 | version: "1"
|
9 | 9 | - JuliaCI/julia-test#v1:
|
10 |
| - project: ./src/ReinforcementLearningCore |
11 |
| - - JuliaCI/julia-coverage#v1: |
12 |
| - codecov: true |
| 10 | + run_tests: false |
| 11 | + command: | |
| 12 | + julia -e ' |
| 13 | + using Pkg |
| 14 | +
|
| 15 | + println("--- :julia: Instantiating project") |
| 16 | + using Pkg |
| 17 | + Pkg.develop(path="src/ReinforcementLearningBase") |
| 18 | + Pkg.develop(path="src/ReinforcementLearningEnvironments") |
| 19 | + Pkg.develop(path="src/ReinforcementLearningCore") |
| 20 | +
|
| 21 | + println("+++ :julia: Running tests") |
| 22 | + Pkg.test("ReinforcementLearningCore", coverage=true) |
| 23 | + ' |
13 | 24 | agents:
|
14 | 25 | queue: "juliagpu"
|
15 | 26 | cuda: "*"
|
16 | 27 | if: build.message !~ /\[skip tests\]/
|
17 | 28 | timeout_in_minutes: 60
|
18 |
| - - label: "Julia v1 RLZoo" |
| 29 | + - label: "Julia v1 RLFarm" |
19 | 30 | plugins:
|
20 | 31 | - JuliaCI/julia#v1:
|
21 | 32 | version: "1"
|
22 |
| - - JuliaCI/julia-test#v1: |
23 |
| - project: ./src/ReinforcementLearningZoo |
24 | 33 | - JuliaCI/julia-coverage#v1:
|
25 |
| - codecov: true |
| 34 | + dirs: |
| 35 | + - src/ReinforcementLearningFarm/src |
| 36 | + - JuliaCI/julia-test#v1: |
| 37 | + run_tests: false |
| 38 | + command: | |
| 39 | + julia -e ' |
| 40 | + using Pkg |
| 41 | +
|
| 42 | + println("--- :julia: Instantiating project") |
| 43 | + using Pkg |
| 44 | + Pkg.develop(path="src/ReinforcementLearningBase") |
| 45 | + Pkg.develop(path="src/ReinforcementLearningEnvironments") |
| 46 | + Pkg.develop(path="src/ReinforcementLearningCore") |
| 47 | + Pkg.develop(path="src/ReinforcementLearningFarm") |
| 48 | +
|
| 49 | + println("+++ :julia: Running tests") |
| 50 | + Pkg.test("ReinforcementLearningFarm", coverage=true) |
| 51 | + ' |
26 | 52 | agents:
|
27 | 53 | queue: "juliagpu"
|
28 | 54 | cuda: "*"
|
29 | 55 | if: build.message !~ /\[skip tests\]/
|
30 | 56 | timeout_in_minutes: 60
|
31 |
| - - label: "Julia v1 RLExperiments" |
32 |
| - plugins: |
33 |
| - - JuliaCI/julia#v1: |
34 |
| - version: "1" |
35 |
| - - JuliaCI/julia-test#v1: |
36 |
| - project: ./src/ReinforcementLearningZoo |
37 |
| - - JuliaCI/julia-coverage#v1: |
38 |
| - codecov: true |
39 | 57 | agents:
|
40 | 58 | queue: "juliagpu"
|
41 | 59 | cuda: "*"
|
|
0 commit comments