@@ -61,22 +61,22 @@ jobs:
61
61
name : checkout
62
62
path : .
63
63
-
64
- name : Set Python
65
- uses : actions/setup-python@v2
66
- with :
67
- architecture : ${{ matrix.arch }}
68
- python-version : " 3.6"
69
- -
70
- name : Setup MSVC toolset
64
+ name : Set MSVC toolset
71
65
uses : pylegacy/actions/setup-msvc@v1
72
66
with :
73
67
architecture : ${{ matrix.arch }}
74
68
version : ${{ matrix.msvc-toolset }}
75
69
-
76
- name : Install CMake
70
+ name : Set CMake
77
71
uses : jwlawson/actions-setup-cmake@v1.9
78
72
with :
79
73
cmake-version : ${{ matrix.cmake-version }}
74
+ -
75
+ name : Set Python
76
+ uses : actions/setup-python@v2
77
+ with :
78
+ architecture : ${{ matrix.arch }}
79
+ python-version : " 3.6"
80
80
-
81
81
name : Build GEOS from source
82
82
run : |
@@ -107,12 +107,6 @@ jobs:
107
107
with :
108
108
name : checkout
109
109
path : .
110
- -
111
- name : Set Python
112
- uses : actions/setup-python@v2
113
- with :
114
- architecture : ${{ matrix.arch }}
115
- python-version : ${{ matrix.python-version }}
116
110
-
117
111
name : Set MSVC toolset version
118
112
run : |
@@ -122,13 +116,19 @@ jobs:
122
116
echo "msvc-toolset=14.16" >> $env:GITHUB_ENV
123
117
}
124
118
-
125
- name : Setup MSVC toolset
119
+ name : Set MSVC toolset
126
120
uses : pylegacy/actions/setup-msvc@v1
127
121
with :
128
122
architecture : ${{ matrix.arch }}
129
123
version : ${{ env.msvc-toolset }}
130
124
-
131
- name : Install Python base packages
125
+ name : Set Python
126
+ uses : actions/setup-python@v2
127
+ with :
128
+ architecture : ${{ matrix.arch }}
129
+ python-version : ${{ matrix.python-version }}
130
+ -
131
+ name : Set Python base packages
132
132
run : |
133
133
python -m pip install --upgrade pip setuptools wheel
134
134
-
0 commit comments