From 41a8ddbed135cbfbc23f4c600f43d71460728fe8 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Thu, 3 Feb 2022 14:49:45 -0500 Subject: [PATCH 1/6] COMP: SuperBuild: Support explicit overriding of QT_MIN_VERSION --- .travis.yml | 2 +- Superbuild/Superbuild.cmake | 11 +++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index dd9511ec8..163b18f3c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ before_install: - sudo apt-get -qq --yes install ninja-build mesa-common-dev libgl1-mesa-dev libglu1-mesa-dev mesa-utils-extra libglapi-mesa libglapi-mesa qt5-qmake qtbase5-dev libqt5opengl5-dev libqt5svg5-dev script: - cd bin - - cmake -GNinja -DTRAVIS_BUILD:BOOL=ON -DQt5_PATH=$(dpkg -L qtbase5-dev) ../Superbuild + - cmake -GNinja -DTRAVIS_BUILD:BOOL=ON -DQT_MIN_VERSION:STRING=5.9 -DQt5_PATH=$(dpkg -L qtbase5-dev) ../Superbuild - travis_wait 70 ninja after_success: diff --git a/Superbuild/Superbuild.cmake b/Superbuild/Superbuild.cmake index cb0a5e5b7..6678b10f0 100644 --- a/Superbuild/Superbuild.cmake +++ b/Superbuild/Superbuild.cmake @@ -142,13 +142,12 @@ else() option(DO_ZLIB_MANGLE "Mangle Zlib names to avoid conflicts with Qt5 or other external libraries" ON) endif() -if (TRAVIS_BUILD) - set(QT_MIN_VERSION "5.9") -else() - set(QT_MIN_VERSION "5.12") -endif() - if(SEG3D_BUILD_INTERFACE) + + if(NOT DEFINED QT_MIN_VERSION) + set(QT_MIN_VERSION "5.12") + endif() + set(Qt5_PATH "" CACHE PATH "Path to directory where Qt 5 is installed. Directory should contain lib and bin subdirectories.") #set(CMAKE_AUTOMOC ON) From 31745237821d2154381239fafb7451f9a5849633 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Thu, 3 Feb 2022 14:54:37 -0500 Subject: [PATCH 2/6] COMP: Simplify build-system removing TRAVIS_BUILD option CFLAGS and CXXFLAGS env. variables are explicitly set in travis configuration Explicit passing of "-Wno-deprecated" to ITK project is removed because (1) it is done starting with ITK project 4.0 in InsightSoftwareConsortium/ITK@8a135bcb1 (ENH: Detect/use recommended compiler flags) from 2011-08-20 and (2) Seg3D is build against ITK 5.x. See 3b6512c (Update ITK version to 5.1.0) --- .travis.yml | 5 ++++- Superbuild/BoostExternal.cmake | 4 ---- Superbuild/FreetypeExternal.cmake | 5 ----- Superbuild/GlewExternal.cmake | 5 ----- Superbuild/ITKExternal.cmake | 10 ---------- Superbuild/ImplicitFunctionExternal.cmake | 4 ---- Superbuild/LibPNGExternal.cmake | 5 ----- Superbuild/SQLiteExternal.cmake | 5 ----- Superbuild/TeemExternal.cmake | 5 ----- Superbuild/TetgenExternal.cmake | 20 -------------------- Superbuild/ZlibExternal.cmake | 5 ----- 11 files changed, 4 insertions(+), 69 deletions(-) diff --git a/.travis.yml b/.travis.yml index 163b18f3c..23104c7af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,10 @@ before_install: - sudo apt-get -qq --yes install ninja-build mesa-common-dev libgl1-mesa-dev libglu1-mesa-dev mesa-utils-extra libglapi-mesa libglapi-mesa qt5-qmake qtbase5-dev libqt5opengl5-dev libqt5svg5-dev script: - cd bin - - cmake -GNinja -DTRAVIS_BUILD:BOOL=ON -DQT_MIN_VERSION:STRING=5.9 -DQt5_PATH=$(dpkg -L qtbase5-dev) ../Superbuild + - | + export CFLAGS="-w" + export CXXFLAGS="-w" + cmake -GNinja -DQT_MIN_VERSION:STRING=5.9 -DQt5_PATH=$(dpkg -L qtbase5-dev) ../Superbuild - travis_wait 70 ninja after_success: diff --git a/Superbuild/BoostExternal.cmake b/Superbuild/BoostExternal.cmake index 05284ee82..a72ede5a8 100644 --- a/Superbuild/BoostExternal.cmake +++ b/Superbuild/BoostExternal.cmake @@ -71,10 +71,6 @@ endif() set(boost_GIT_URL "https://github.com/CIBC-Internal/boost.git") -if(TRAVIS_BUILD) - list(APPEND boost_CXX_Flag "-w") -endif() - # TODO: fix install step # # If CMake ever allows overriding the checkout command or adding flags, diff --git a/Superbuild/FreetypeExternal.cmake b/Superbuild/FreetypeExternal.cmake index 9e22e49df..671677658 100644 --- a/Superbuild/FreetypeExternal.cmake +++ b/Superbuild/FreetypeExternal.cmake @@ -27,11 +27,6 @@ set_property(DIRECTORY PROPERTY "EP_BASE" ${ep_base}) set(freetype_GIT_TAG "origin/master") -if(TRAVIS_BUILD) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -w") -endif() - # If CMake ever allows overriding the checkout command or adding flags, # git checkout -q will silence message about detached head (harmless). ExternalProject_Add(Freetype_external diff --git a/Superbuild/GlewExternal.cmake b/Superbuild/GlewExternal.cmake index 2aeb21d5b..46d7e4eb8 100644 --- a/Superbuild/GlewExternal.cmake +++ b/Superbuild/GlewExternal.cmake @@ -27,11 +27,6 @@ set_property(DIRECTORY PROPERTY "EP_BASE" ${ep_base}) set(glew_GIT_TAG "origin/master") -if(TRAVIS_BUILD) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -w") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w") -endif() - # If CMake ever allows overriding the checkout command or adding flags, # git checkout -q will silence message about detached head (harmless). ExternalProject_Add(Glew_external diff --git a/Superbuild/ITKExternal.cmake b/Superbuild/ITKExternal.cmake index 849217893..30d72cc00 100644 --- a/Superbuild/ITKExternal.cmake +++ b/Superbuild/ITKExternal.cmake @@ -35,16 +35,6 @@ set(itk_ARGS "-DITK_INSTALL_NO_DEVELOPMENT:BOOL=OFF" ) -if(TRAVIS_BUILD) - list(APPEND itk_ARGS - "-Wno-dev" - "-Wno-deprecated" - ) - - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -w") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w") -endif() - set(itk_CACHE_ARGS "-DCMAKE_VERBOSE_MAKEFILE:BOOL=${CMAKE_VERBOSE_MAKEFILE}" "-DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE}" diff --git a/Superbuild/ImplicitFunctionExternal.cmake b/Superbuild/ImplicitFunctionExternal.cmake index 1d070c919..229c11dc0 100644 --- a/Superbuild/ImplicitFunctionExternal.cmake +++ b/Superbuild/ImplicitFunctionExternal.cmake @@ -28,10 +28,6 @@ set_property(DIRECTORY PROPERTY "EP_BASE" ${ep_base}) set(implicitFunction_GIT_TAG "origin/master") set(implicitFunction_DEPENDENCIES "Tetgen_external;Eigen_external") -if(TRAVIS_BUILD) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -w") -endif() - # If CMake ever allows overriding the checkout command or adding flags, # git checkout -q will silence message about detached head (harmless). ExternalProject_Add(ImplicitFunction_external diff --git a/Superbuild/LibPNGExternal.cmake b/Superbuild/LibPNGExternal.cmake index c604dda0b..491316f18 100644 --- a/Superbuild/LibPNGExternal.cmake +++ b/Superbuild/LibPNGExternal.cmake @@ -28,11 +28,6 @@ set_property(DIRECTORY PROPERTY "EP_BASE" ${ep_base}) set(libpng_GIT_TAG "origin/master") set(libpng_DEPENDENCIES "Zlib_external") -if(TRAVIS_BUILD) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -w") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w") -endif() - # If CMake ever allows overriding the checkout command or adding flags, # git checkout -q will silence message about detached head (harmless). ExternalProject_Add(LibPNG_external diff --git a/Superbuild/SQLiteExternal.cmake b/Superbuild/SQLiteExternal.cmake index bc4462634..45f8f2b65 100644 --- a/Superbuild/SQLiteExternal.cmake +++ b/Superbuild/SQLiteExternal.cmake @@ -27,11 +27,6 @@ set_property(DIRECTORY PROPERTY "EP_BASE" ${ep_base}) set(sqlite_GIT_TAG "origin/master") -if(TRAVIS_BUILD) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -w") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w") -endif() - # If CMake ever allows overriding the checkout command or adding flags, # git checkout -q will silence message about detached head (harmless). ExternalProject_Add(SQLite_external diff --git a/Superbuild/TeemExternal.cmake b/Superbuild/TeemExternal.cmake index 7b762e934..cc21c93b3 100644 --- a/Superbuild/TeemExternal.cmake +++ b/Superbuild/TeemExternal.cmake @@ -28,11 +28,6 @@ set_property(DIRECTORY PROPERTY "EP_BASE" ${ep_base}) set(teem_GIT_TAG "origin/master") set(teem_DEPENDENCIES "Zlib_external;LibPNG_external") -if(TRAVIS_BUILD) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -w") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w") -endif() - # If CMake ever allows overriding the checkout command or adding flags, # git checkout -q will silence message about detached head (harmless). ExternalProject_Add(Teem_external diff --git a/Superbuild/TetgenExternal.cmake b/Superbuild/TetgenExternal.cmake index 98cf8eb5a..ad449333f 100644 --- a/Superbuild/TetgenExternal.cmake +++ b/Superbuild/TetgenExternal.cmake @@ -28,26 +28,6 @@ set_property(DIRECTORY PROPERTY "EP_BASE" ${ep_base}) set(TETGEN_LIBRARY "tet") -# if(TRAVIS_BUILD OR ${CMAKE_VERSION} VERSION_GREATER 3.7.2) - # # allowed since CMake 3.7.2 - # # only supporting in CI builds for now, since CMake version is so new - # set(DOWNLOAD_URL "http://tetgen.org/files/tetgen1.4.3.tar.gz http://www.sci.utah.edu/devbuilds/seg3d/tetgen1.4.3.tar.gz") -# else() - # set(DOWNLOAD_URL "http://tetgen.org/files/tetgen1.4.3.tar.gz") -# endif() - -# ExternalProject_Add(Tetgen_external - # URL ${DOWNLOAD_URL} - # PATCH_COMMAND "" - # INSTALL_COMMAND "" - # CMAKE_CACHE_ARGS - # -DCMAKE_VERBOSE_MAKEFILE:BOOL=${CMAKE_VERBOSE_MAKEFILE} - # -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} - # -DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON - # -DTETGEN_LIBRARY:STRING=${TETGEN_LIBRARY} -# ) - - set(tetgen_SVN_URL "https://gforge.sci.utah.edu/svn/tetgen") #set(sci_data_DIR "${CMAKE_BINARY_DIR}/SCIRunData") diff --git a/Superbuild/ZlibExternal.cmake b/Superbuild/ZlibExternal.cmake index fbcaeb5a3..6a834b4e4 100644 --- a/Superbuild/ZlibExternal.cmake +++ b/Superbuild/ZlibExternal.cmake @@ -27,11 +27,6 @@ set_property(DIRECTORY PROPERTY "EP_BASE" ${ep_base}) set(zlib_GIT_TAG "origin/master") -if(TRAVIS_BUILD) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -w") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w") -endif() - # If CMake ever allows overriding the checkout command or adding flags, # git checkout -q will silence message about detached head (harmless). ExternalProject_Add(Zlib_external From bb2609197076b23c896ff693fe445081b7f0d341 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Fri, 10 Mar 2023 17:19:47 -0500 Subject: [PATCH 3/6] COMP: Remove irrelevant Travis CI pipeline Since TravisCI seems to now offers a finite amount of "credits" for open source projects, this commit removes the corresponding support. See https://travis-ci.community/t/question-open-source-travis-ci-for-open-source-projects-as-of-august-2022/13233 --- .travis.yml | 21 --------------------- README.md | 1 - Superbuild/Superbuild.cmake | 7 ------- 3 files changed, 29 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 23104c7af..000000000 --- a/.travis.yml +++ /dev/null @@ -1,21 +0,0 @@ -os: linux -dist: bionic - -compiler: - - gcc - - clang -before_install: - - sudo apt-get -qq --yes update - # packages for headless build - - sudo apt-get -qq --yes install ninja-build mesa-common-dev libgl1-mesa-dev libglu1-mesa-dev mesa-utils-extra libglapi-mesa libglapi-mesa qt5-qmake qtbase5-dev libqt5opengl5-dev libqt5svg5-dev -script: - - cd bin - - | - export CFLAGS="-w" - export CXXFLAGS="-w" - cmake -GNinja -DQT_MIN_VERSION:STRING=5.9 -DQt5_PATH=$(dpkg -L qtbase5-dev) ../Superbuild - - travis_wait 70 ninja - -after_success: - - cd Seg3D - - ninja test diff --git a/README.md b/README.md index a29672357..50b34b10a 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,3 @@ Seg3D [build instructions and documentation](http://sciinstitute.github.io/seg3d.pages). -[![Build Status](https://travis-ci.org/SCIInstitute/Seg3D.svg?branch=master)](https://travis-ci.org/SCIInstitute/Seg3D) diff --git a/Superbuild/Superbuild.cmake b/Superbuild/Superbuild.cmake index 6678b10f0..33690a03a 100644 --- a/Superbuild/Superbuild.cmake +++ b/Superbuild/Superbuild.cmake @@ -123,13 +123,6 @@ endif() option(BUILD_MANUAL_TOOLS_ONLY "Build Seg3D library with only manual tools." OFF) -###########################################ß -# Travis CI build needs to be as slim as possible -########################################### - -option(TRAVIS_BUILD "Slim build for Travis CI" OFF) -mark_as_advanced(TRAVIS_BUILD) - set(ENABLED_WARNINGS "-Wall") ########################################### From 59d84b8c57382375a2fcf2ec56f0edf40fa84cec Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Fri, 10 Mar 2023 17:29:33 -0500 Subject: [PATCH 4/6] COMP: Use latest version checkout, install-qt-action and upload-artifact actions --- .github/workflows/linux.yml | 4 ++-- .github/workflows/mac.yml | 6 +++--- .github/workflows/windows.yml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 1efe6cba7..6a139e1d9 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -12,13 +12,13 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Prepare run: sudo apt-get update && sudo apt-get install mesa-common-dev libgl1-mesa-dev mesa-utils-extra libglapi-mesa ninja-build qt5-qmake qtbase5-dev libqt5opengl5-dev libqt5svg5-dev - name: Install Qt - uses: jurplel/install-qt-action@v2 + uses: jurplel/install-qt-action@v3 with: version: 5.14.2 target: desktop diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 220d1fdc3..c90aa2783 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -9,10 +9,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Qt - uses: jurplel/install-qt-action@v2 + uses: jurplel/install-qt-action@v3 with: version: 5.14.2 target: desktop @@ -34,7 +34,7 @@ jobs: ./repair_package.sh - name: Upload installer - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: Seg3DMacInstaller path: bin/Seg3D/Seg3D2-2.*-Darwin.pkg diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index aa7dab335..b2b4dd801 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -13,10 +13,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Qt - uses: jurplel/install-qt-action@v2 + uses: jurplel/install-qt-action@v3 with: version: ${{ matrix.qtversion }} target: desktop @@ -40,7 +40,7 @@ jobs: run: cmake --build . --config Release --target package - name: Upload installer - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: Seg3DWindowsInstaller_${{ matrix.qtversion }} path: bin/Seg3D/Seg3D2-2.*-win64.exe From 45be28707e515f09dba1b1a4184b34499f2c65ab Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Fri, 10 Mar 2023 17:53:57 -0500 Subject: [PATCH 5/6] COMP: Cancel in-progress GitHub Actions worklows on repeated pushes --- .github/workflows/linux.yml | 4 ++++ .github/workflows/mac.yml | 4 ++++ .github/workflows/windows.yml | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 6a139e1d9..62adc44b4 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -2,6 +2,10 @@ name: linux-build on: [push, pull_request] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: linux-build-gui: diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index c90aa2783..354a8f7dc 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -2,6 +2,10 @@ name: mac-build on: [push, pull_request] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: mac-build-gui: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b2b4dd801..bc8994139 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -2,6 +2,10 @@ name: windows-build on: [push, pull_request] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + jobs: windows-build-gui: From cb23254208312b43b556daa6ff61475dd6a85ac3 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Fri, 10 Mar 2023 17:32:25 -0500 Subject: [PATCH 6/6] COMP: Update GitHub Actions pipelines standardize on building against Qt 5.15.2 All: * Standardize on using Qt 5.15.2 * Split configure command across multiple lines Linux: * Update runner from "ubuntu-18.04" to "ubuntu-20.04" macOS: * Hard-code runner to "macos-10.15" Windows: * Update runner from "windows-2016" to "windows-2022" * Update Visual Studio from "15 2017" to "17 2022" * Explicitly specify toolset v143 --- .github/workflows/linux.yml | 9 ++++++--- .github/workflows/mac.yml | 14 ++++++++------ .github/workflows/windows.yml | 21 +++++++++++++++++---- 3 files changed, 31 insertions(+), 13 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 62adc44b4..c257612d8 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -12,7 +12,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-18.04, ubuntu-latest] + os: [ubuntu-20.04] steps: - name: Checkout @@ -24,11 +24,14 @@ jobs: - name: Install Qt uses: jurplel/install-qt-action@v3 with: - version: 5.14.2 + version: 5.15.2 target: desktop host: linux install-deps: true - name: Build - run: ./build.sh -DQt5_PATH="${Qt5_Dir}" -j3 + run: | + ./build.sh \ + -DQt5_PATH="${Qt5_Dir}" \ + -j3 continue-on-error: true diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 354a8f7dc..f438c08eb 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -9,7 +9,7 @@ concurrency: jobs: mac-build-gui: - runs-on: macOS-latest + runs-on: macos-10.15 steps: - name: Checkout @@ -18,17 +18,19 @@ jobs: - name: Install Qt uses: jurplel/install-qt-action@v3 with: - version: 5.14.2 + version: 5.15.2 target: desktop host: mac install-deps: true - - name: Prepare - run: | - ln -s /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Tk.framework/Versions/8.5/Headers/X11/ /usr/local/include/X11 + #- name: Prepare + # run: | + # ln -s /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Tk.framework/Versions/8.5/Headers/X11/ /usr/local/include/X11 - name: make - run: ./build.sh -DQt5_PATH="${Qt5_Dir}" + run: | + ./build.sh \ + -DQt5_PATH="${Qt5_Dir}" - name: Package working-directory: bin/Seg3D diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index bc8994139..d7ec586b0 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -11,8 +11,14 @@ jobs: windows-build-gui: strategy: matrix: - qtversion: [5.12.8, 5.14.2] - runs-on: windows-2016 + qtversion: [5.15.2] + include: + - qtversion: 5.15.2 + qtarch: win64_msvc2019_64 + cmake-generator: "Visual Studio 17 2022" + cmake-arch: x64 + cmake-toolset: v143 + runs-on: windows-2022 steps: @@ -25,13 +31,20 @@ jobs: version: ${{ matrix.qtversion }} target: desktop host: windows - arch: win64_msvc2017_64 + arch: ${{ matrix.qtarch }} install-deps: true - name: Configure working-directory: bin run: | - cmake ..\Superbuild -DCMAKE_BUILD_TYPE=Release -G"Visual Studio 15 2017" -Ax64 -DQt5_PATH:PATH="$env:Qt5_Dir" -DBUILD_WITH_PYTHON:BOOL=OFF + cmake ` + ..\Superbuild ` + -DCMAKE_BUILD_TYPE=Release ` + -G"${{ matrix.cmake-generator }}" ` + -A${{ matrix.cmake-arch }} ` + -T${{ matrix.cmake-toolset }} ` + -DQt5_PATH:PATH="$env:Qt5_Dir" ` + -DBUILD_WITH_PYTHON:BOOL=OFF - name: Compile working-directory: bin