Skip to content

Commit 8e8ecc4

Browse files
committed
feat(Static): build static packages
1 parent 2653db2 commit 8e8ecc4

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,19 @@ jobs:
3333
build-windows:
3434
needs: format
3535
uses: Geode-solutions/actions/.github/workflows/ci-windows.yml@master
36+
with:
37+
repos: OpenGeode;OpenGeode-IO;OpenGeode-Geosciences;OpenGeode-GeosciencesIO
38+
secrets: inherit
39+
40+
build-windows-python:
41+
needs: format
42+
uses: Geode-solutions/actions/.github/workflows/ci-windows-python.yml@master
3643
with:
3744
name: OPENGEODE_INSPECTOR
3845
repos: OpenGeode;OpenGeode-IO;OpenGeode-Geosciences;OpenGeode-GeosciencesIO
3946
secrets: inherit
4047

4148
semantic-release:
42-
needs: [build-linux, build-linux-python, build-windows]
49+
needs: [build-linux, build-linux-python, build-windows, build-windows-python]
4350
uses: Geode-solutions/actions/.github/workflows/release.yml@master
4451
secrets: inherit

CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
# SOFTWARE.
2020

21-
cmake_minimum_required(VERSION 3.11)
21+
cmake_minimum_required(VERSION 3.15)
22+
23+
cmake_policy(SET CMP0091 NEW)
2224

2325
# Define the project
2426
project(OpenGeode-Inspector CXX)

tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
# SOFTWARE.
2020

21-
cmake_minimum_required(VERSION 3.11)
21+
cmake_minimum_required(VERSION 3.15)
2222

2323
if(NOT TARGET OpenGeode-Inspector::inspector)
2424
project(OpenGeode-Inspector CXX)

0 commit comments

Comments
 (0)