-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathrelease_numpy_versions_test.yml
More file actions
64 lines (62 loc) · 2.18 KB
/
release_numpy_versions_test.yml
File metadata and controls
64 lines (62 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
on:
workflow_dispatch:
# push:
# branches: ["202-test-valid-dependency-range-for-reskit-43"]
pull_request:
branches: ["master"]
jobs:
TestPushCondaForgeDev:
strategy:
fail-fast: false
matrix:
runner_tag: ["self-hosted"]
numpy_version:
[
"1.21.5",
"1.21.6",
"1.22.0",
"1.22.1",
"1.22.2",
"1.22.3",
"1.22.4",
"1.23.0",
"1.23.1",
"1.23.2",
"1.23.3",
"1.23.4",
"1.23.5",
"1.24.0",
"1.24.1",
"1.24.2",
"1.24.3",
"1.24.4",
"1.25.0",
"1.25.1",
"1.25.2",
"1.26.0",
"1.26.2",
"1.26.3",
"1.26.4",
]
uses: FZJ-IEK3-VSA/.github/.github/workflows/_run_single_conda_forge_test.yml@main
with:
runner_tag: ${{ matrix.runner_tag }}
requirements_file_name: requirements-dev.yml
library_name: "numpy"
library_version: ${{ matrix.numpy_version }}
dependency_position_env_file: "8"
examples_to_execute: examples/1_load_input_data/1_2_1_reading_merra_weather_data.ipynb examples/1_load_input_data/1_2_2_vertically_project_wind_speed_from_merra.ipynb examples/2_economic/ examples/3_wind examples/4_solar examples/5_geothermal/ examples/6_direct_air_capture/
# TestOtherOSCondaForge:
# strategy:
# fail-fast: false
# matrix:
# runner_tag: ["windows-latest", "macos-latest"]
# numpy_version: ["1.21.5"]
# uses: FZJ-IEK3-VSA/.github/.github/workflows/_run_single_conda_forge_test.yml@main
# with:
# runner_tag: ${{ matrix.runner_tag }}
# requirements_file_name: requirements-dev.yml
# library_name: "numpy"
# library_version: ${{ matrix.numpy_version }}
# dependency_position_env_file: "8"
# examples_to_execute: examples/1_load_input_data/1_2_1_reading_merra_weather_data.ipynb examples/1_load_input_data/1_2_2_vertically_project_wind_speed_from_merra.ipynb examples/2_economic/ examples/3_wind examples/4_solar examples/5_geothermal/ examples/6_direct_air_capture/