From 3f571c30f51aff61a1032e953894b780616b7c39 Mon Sep 17 00:00:00 2001 From: Iakov Nakhimovski Date: Wed, 17 Feb 2021 22:12:03 +0100 Subject: [PATCH 1/3] (change) Only leave Linux config for basic test --- .github/workflows/build_cmake.yml | 32 +++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index 437a6b5..71abf47 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -16,27 +16,27 @@ jobs: fail-fast: false matrix: config: - - { - name: "Windows Latest MSVC", artifact: "Windows-MSVC.7z", - os: windows-latest, - cc: "cl", cxx: "cl", - environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat" - } - - { - name: "Windows Latest MinGW", artifact: "Windows-MinGW.7z", - os: windows-latest, - cc: "gcc", cxx: "g++" - } +// - { +// name: "Windows Latest MSVC", artifact: "Windows-MSVC.7z", +// os: windows-latest, +// cc: "cl", cxx: "cl", +// environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat" +// } +// - { +// name: "Windows Latest MinGW", artifact: "Windows-MinGW.7z", +// os: windows-latest, +// cc: "gcc", cxx: "g++" +// } - { name: "Ubuntu Latest GCC", artifact: "Linux.7z", os: ubuntu-latest, cc: "gcc", cxx: "g++" } - - { - name: "macOS Latest Clang", artifact: "macOS.7z", - os: macos-latest, - cc: "clang", cxx: "clang++" - } + // - { + // name: "macOS Latest Clang", artifact: "macOS.7z", + // os: macos-latest, + // cc: "clang", cxx: "clang++" + // } steps: - uses: actions/checkout@v1 From 91c8279d6b2435202e7298ac5b63881d8b68f94f Mon Sep 17 00:00:00 2001 From: Iakov Nakhimovski Date: Wed, 17 Feb 2021 22:20:10 +0100 Subject: [PATCH 2/3] (dummy) Just to kick actions --- .github/workflows/build_cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index 71abf47..1e3206a 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: config: -// - { +// // - { // name: "Windows Latest MSVC", artifact: "Windows-MSVC.7z", // os: windows-latest, // cc: "cl", cxx: "cl", From ec75d86f363daa63ed33dfd49cb44f277ea39a76 Mon Sep 17 00:00:00 2001 From: Iakov Nakhimovski Date: Wed, 17 Feb 2021 22:24:12 +0100 Subject: [PATCH 3/3] (fix) Yaml syntax --- .github/workflows/build_cmake.yml | 43 ++++++++++++++++--------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index 1e3206a..a4605b6 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -16,27 +16,28 @@ jobs: fail-fast: false matrix: config: -// // - { -// name: "Windows Latest MSVC", artifact: "Windows-MSVC.7z", -// os: windows-latest, -// cc: "cl", cxx: "cl", -// environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat" -// } -// - { -// name: "Windows Latest MinGW", artifact: "Windows-MinGW.7z", -// os: windows-latest, -// cc: "gcc", cxx: "g++" -// } - - { - name: "Ubuntu Latest GCC", artifact: "Linux.7z", - os: ubuntu-latest, - cc: "gcc", cxx: "g++" - } - // - { - // name: "macOS Latest Clang", artifact: "macOS.7z", - // os: macos-latest, - // cc: "clang", cxx: "clang++" - // } + - name: "Ubuntu Latest GCC" + artifact: "Linux.7z" + os: ubuntu-latest + cc: "gcc" + cxx: "g++" + +# - { +# name: "Windows Latest MSVC", artifact: "Windows-MSVC.7z", +# os: windows-latest, +# cc: "cl", cxx: "cl", +# environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat" +# } +# - { +# name: "Windows Latest MinGW", artifact: "Windows-MinGW.7z", +# os: windows-latest, +# cc: "gcc", cxx: "g++" +# } +# - { +# name: "macOS Latest Clang", artifact: "macOS.7z", +# os: macos-latest, +# cc: "clang", cxx: "clang++" +# } steps: - uses: actions/checkout@v1