File tree 4 files changed +36
-34
lines changed
4 files changed +36
-34
lines changed Original file line number Diff line number Diff line change
1
+ name : Build pandas
2
+ description : Rebuilds the C extensions and installs pandas
3
+ runs :
4
+ using : composite
5
+ steps :
6
+
7
+ - name : Environment Detail
8
+ run : |
9
+ conda info
10
+ conda list
11
+ shell : bash -l {0}
12
+
13
+ - name : Build Pandas
14
+ run : |
15
+ python setup.py build_ext -j 2
16
+ python -m pip install -e . --no-build-isolation --no-use-pep517
17
+ shell : bash -l {0}
Original file line number Diff line number Diff line change
1
+ name : Set up pandas
2
+ description : Runs all the setup steps required to have a built pandas ready to use
3
+ runs :
4
+ using : composite
5
+ steps :
6
+ - name : Setting conda path
7
+ run : echo "${HOME}/miniconda3/bin" >> $GITHUB_PATH
8
+ shell : bash -l {0}
9
+
10
+ - name : Setup environment and build pandas
11
+ run : ci/setup_env.sh
12
+ shell : bash -l {0}
Original file line number Diff line number Diff line change 41
41
environment-file : ${{ env.ENV_FILE }}
42
42
use-only-tar-bz2 : true
43
43
44
- - name : Environment Detail
45
- run : |
46
- conda info
47
- conda list
48
-
49
44
- name : Build Pandas
50
- run : |
51
- python setup.py build_ext -j 2
52
- python -m pip install -e . --no-build-isolation --no-use-pep517
45
+ uses : ./.github/actions/build_pandas
53
46
54
47
- name : Linting
55
48
run : ci/code_checks.sh lint
@@ -100,14 +93,11 @@ jobs:
100
93
runs-on : ubuntu-latest
101
94
steps :
102
95
103
- - name : Setting conda path
104
- run : echo "${HOME}/miniconda3/bin" >> $GITHUB_PATH
105
-
106
96
- name : Checkout
107
97
uses : actions/checkout@v1
108
98
109
- - name : Setup environment and build pandas
110
- run : ci/setup_env.sh
99
+ - name : Set up pandas
100
+ uses : ./.github/actions/setup
111
101
112
102
- name : Build website
113
103
run : |
@@ -144,14 +134,11 @@ jobs:
144
134
runs-on : ubuntu-latest
145
135
steps :
146
136
147
- - name : Setting conda path
148
- run : echo "${HOME}/miniconda3/bin" >> $GITHUB_PATH
149
-
150
137
- name : Checkout
151
138
uses : actions/checkout@v1
152
139
153
- - name : Setup environment and build pandas
154
- run : ci/setup_env.sh
140
+ - name : Set up pandas
141
+ uses : ./.github/actions/setup
155
142
156
143
- name : Run tests
157
144
run : |
Original file line number Diff line number Diff line change 72
72
environment-file : ${{ env.ENV_FILE }}
73
73
use-only-tar-bz2 : true
74
74
75
- - name : Environment Detail
76
- run : |
77
- conda info
78
- conda list
79
-
80
75
- name : Build Pandas
81
- run : |
82
- python setup.py build_ext -j 2
83
- python -m pip install -e . --no-build-isolation --no-use-pep517
76
+ uses : ./.github/actions/build_pandas
84
77
85
78
- name : Test
86
79
run : ci/run_tests.sh
@@ -158,15 +151,8 @@ jobs:
158
151
environment-file : ${{ env.ENV_FILE }}
159
152
use-only-tar-bz2 : true
160
153
161
- - name : Environment Detail
162
- run : |
163
- conda info
164
- conda list
165
-
166
154
- name : Build Pandas
167
- run : |
168
- python setup.py build_ext -j 2
169
- python -m pip install -e . --no-build-isolation --no-use-pep517
155
+ uses : ./.github/actions/build_pandas
170
156
171
157
- name : Test
172
158
run : ci/run_tests.sh
You can’t perform that action at this time.
0 commit comments