[geos-commits] [SCM] GEOS branch 3.10 updated. 8809f7c9ab68594e843151008899bd7d9b10223f

git at osgeo.org git at osgeo.org
Sun Oct 31 16:55:09 PDT 2021


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".

The branch, 3.10 has been updated
       via  8809f7c9ab68594e843151008899bd7d9b10223f (commit)
      from  0543d5b59dd0141bc13cf714dcdcf3c90ce19344 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 8809f7c9ab68594e843151008899bd7d9b10223f
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Sun Oct 31 16:54:07 2021 -0700

    Add MSCV 2022 to GH Actions

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0c3c2e12f..12cf28803 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -165,6 +165,51 @@ jobs:
        cmake --build . -j 2
        ctest --output-on-failure .
 
+  windows-mingw-release:
+    name: 'Windows (mingw-w64, Release, 11, x86_64, windows-2019)'
+    runs-on: windows-2019
+    defaults:
+      run:
+        shell: msys2 {0}
+    steps:
+    - name: 'Check Out'
+      uses: actions/checkout at v2
+
+    - name: 'Setup'
+      uses: msys2/setup-msys2 at v2
+      with:
+        install: mingw-w64-x86_64-gcc mingw-w64-x86_64-cmake make
+        update: true
+
+    - name: 'Build'
+      run: |
+       mkdir build
+       cd build
+       cmake --version
+       cmake -DCMAKE_BUILD_TYPE=Release -G"MSYS Makefiles" ..
+       cmake --build . -j 2
+       ctest --output-on-failure .
+
+  windows-msvc-22:
+    name: 'Windows (Visual Studio 2022, Release, windows-2022)'
+    runs-on: windows-2022
+    steps:
+    - name: 'Check Out'
+      uses: actions/checkout at v2
+
+    - name: 'Build'
+      run: |
+       mkdir build
+       cd build
+       cmake --version
+       cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=14 -DBUILD_SHARED_LIBS=ON ..
+       cmake --build . --config Release -j 2
+
+    - name: 'Test'
+      run: |
+       cd build
+       ctest --output-on-failure -C Release
+
   windows-msvc-19:
     name: 'Windows (Visual Studio 2019, Release, windows-2019)'
     runs-on: windows-2019
@@ -178,7 +223,7 @@ jobs:
        cd build
        cmake --version
        cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=14 -DBUILD_SHARED_LIBS=ON ..
-       cmake --build . --config Release
+       cmake --build . --config Release -j 2
 
     - name: 'Test'
       run: |
@@ -198,7 +243,7 @@ jobs:
        cd build
        cmake --version
        cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=11 -DBUILD_SHARED_LIBS=ON ..
-       cmake --build . --config Release
+       cmake --build . --config Release -j 2
 
     - name: 'Test'
       run: |

-----------------------------------------------------------------------

Summary of changes:
 .github/workflows/ci.yml | 49 ++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 47 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list