-
Notifications
You must be signed in to change notification settings - Fork 49
/
pixi.toml
124 lines (107 loc) · 3.19 KB
/
pixi.toml
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[project]
name = "emscripten-forge"
version = "0.1.0"
description = "The emscripten-forge for emscripten-wasm32- builds."
authors = ["DerThorsten <[email protected]>"]
channels = ["conda-forge"]
platforms = ["osx-arm64", "osx-64", "linux-64"]
############################################
# rattler-build feature / tasks
############################################
[feature.feature_rattler_build]
[feature.feature_rattler_build.dependencies]
rattler-build = ">=0.18.1"
python = "3.11.*"
typer = "*"
curl = "*"
[feature.feature_rattler_build.tasks.build-emscripten-compiler-pkg]
cmd = [
"rattler-build","build",
# format
"--package-format", "tar-bz2",
# channels
"-c", "https://repo.mamba.pm/emscripten-forge",
"-c", "microsoft",
"-c", "conda-forge",
"--skip-existing", "local",
"-m", "conda_build_config.yaml",
"--recipe",
"recipes/recipes/emscripten_emscripten-wasm32"
]
[feature.feature_rattler_build.tasks.build-cross-python-pkg]
cmd = [
"rattler-build","build",
# format
"--package-format", "tar-bz2",
# channels
"-c", "https://repo.mamba.pm/emscripten-forge",
"-c", "microsoft",
"-c", "conda-forge",
"--skip-existing", "local",
"-m", "conda_build_config.yaml",
"--recipe",
"recipes/recipes/cross-python_emscripten-wasm32"
]
[feature.feature_rattler_build.tasks.build-pytester-pkg]
cmd = [
"rattler-build","build",
# format
"--package-format", "tar-bz2",
# channels
"-c", "https://repo.mamba.pm/emscripten-forge",
"-c", "microsoft",
"-c", "conda-forge",
"--skip-existing", "local",
"-m", "conda_build_config.yaml",
"--recipe",
"recipes/recipes/pytester"
]
[feature.feature_rattler_build.tasks.setup]
depends_on = ["build-emscripten-compiler-pkg", "build-cross-python-pkg", "build-pytester-pkg"]
[feature.feature_rattler_build.tasks.build-emscripten-wasm32-pkg]
cmd = [
"rattler-build","build",
# format
"--package-format", "tar-bz2",
# channels
"-c", "https://repo.mamba.pm/emscripten-forge",
"-c", "microsoft",
"-c", "conda-forge",
"--target-platform", "emscripten-wasm32",
"--skip-existing", "local",
"-m", "conda_build_config.yaml",
"--recipe"
]
[feature.feature_rattler_build.tasks.build-pkg]
cmd = [
"rattler-build","build",
# format
"--package-format", "tar-bz2",
# channels
"-c", "https://repo.mamba.pm/emscripten-forge",
"-c", "microsoft",
"-c", "conda-forge",
"--skip-existing", "local",
"-m", "conda_build_config.yaml",
"--recipe"
]
############################################
# documentation feature / tasks
############################################
[feature.feature_documentation]
[feature.feature_documentation.dependencies]
python = "3.11.*"
mkdocs = ">=1.6.0"
mkdocs-material = ">=9.5.2"
pip = "*"
mkdocs-git-committers-plugin-2 = "*"
[feature.feature_documentation.tasks.docs-serve]
cmd = ["mkdocs", "serve"]
[feature.feature_documentation.tasks.docs-build]
cmd = ["mkdocs", "build"]
############################################
# environments
############################################
[environments]
rattler-build-env = ["feature_rattler_build"]
documentation-env = ["feature_documentation"]