File tree Expand file tree Collapse file tree 2 files changed +1
-23
lines changed Expand file tree Collapse file tree 2 files changed +1
-23
lines changed Original file line number Diff line number Diff line change 7
7
branches :
8
8
- ' public/build/**-runci'
9
9
pull_request :
10
- types :
11
- # Defaults
12
- - opened
13
- - synchronize
14
- - reopened
15
- # When a CI label is added
16
- - labeled
17
10
workflow_dispatch :
18
11
# Allow to run manually
19
12
27
20
name : Conda
28
21
runs-on : ${{ matrix.os }}
29
22
30
- # Run on push, workflow dispatch and when certain labels are added or are present
31
- if : |
32
- github.event_name != 'pull_request' ||
33
- ((github.event.action != 'labeled' &&
34
- (contains(github.event.pull_request.labels.*.name, 'c: packages: standard') ||
35
- contains(github.event.pull_request.labels.*.name, 'c: packages: optional') ||
36
- contains(github.event.pull_request.labels.*.name, 's: run conda ci'))) ||
37
- (github.event.action == 'labeled' &&
38
- (github.event.label.name == 'c: packages: optional' ||
39
- github.event.label.name == 'c: packages: standard' ||
40
- github.event.label.name == 's: run conda ci')))
41
-
42
23
strategy :
43
24
fail-fast : false
44
25
matrix :
Original file line number Diff line number Diff line change @@ -93,17 +93,14 @@ from source as follows:
93
93
94
94
.. _sec-installation-conda-develop :
95
95
96
- Using conda to provide all dependencies for the Sage library (experimental)
96
+ Using conda to provide all dependencies for the Sage library
97
97
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
98
98
99
99
You can build and install the Sage library from source, using conda to
100
100
provide all of its dependencies. This bypasses most of the build
101
101
system of the Sage distribution and is the fastest way to set up an
102
102
environment for Sage development.
103
103
104
- Note that this is still an experimental feature and may not work as
105
- intended.
106
-
107
104
Here we assume that you are using a git checkout.
108
105
109
106
- Optionally, set the build parallelism for the Sage library. Use
You can’t perform that action at this time.
0 commit comments