Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
f2680359
Unverified
Commit
f2680359
authored
Mar 28, 2021
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
👷
consolidate CI
parent
1f1fa9f3
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
102 additions
and
158 deletions
+102
-158
.github/workflows/macos.yml
.github/workflows/macos.yml
+14
-10
.github/workflows/ubuntu.yml
.github/workflows/ubuntu.yml
+2
-2
.github/workflows/windows.yml
.github/workflows/windows.yml
+41
-79
.travis.yml
.travis.yml
+0
-6
README.md
README.md
+45
-29
appveyor.yml
appveyor.yml
+0
-32
No files found.
.github/workflows/macos.yml
View file @
f2680359
...
...
@@ -3,15 +3,19 @@ name: macOS
on
:
[
push
,
pull_request
]
jobs
:
build
:
runs-on
:
macos-latest
xcode
:
runs-on
:
macos-10.15
strategy
:
matrix
:
xcode
:
[
12.4
,
12.3
,
12.2
,
12.1.1
,
12.1
,
12
,
11.7
,
11.6
,
11.5
,
11.4.1
,
11.3.1
,
11.2.1
,
10.3
]
env
:
DEVELOPER_DIR
:
/Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
steps
:
-
uses
:
actions/checkout@v2
-
name
:
cmake
run
:
cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On
-
name
:
build
run
:
cmake --build build --parallel
10
-
name
:
test
run
:
cd build ; ctest -j 10 --output-on-failure
-
uses
:
actions/checkout@v2
-
name
:
cmake
run
:
cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On -DJSON_FastTests=ON
-
name
:
build
run
:
cmake --build build --parallel
10
-
name
:
test
run
:
cd build ; ctest -j 10 --output-on-failure
.github/workflows/ubuntu.yml
View file @
f2680359
...
...
@@ -99,10 +99,10 @@ jobs:
container
:
nlohmann/json-ci:latest
strategy
:
matrix
:
compiler
:
[
g++-4.8
,
g++-4.9
,
g++-5
,
g++-7
,
g++-8
,
g++-9
,
g++-10
,
clang++-3.5
,
clang++-3.6
,
clang++-3.7
,
clang++-3.8
,
clang++-3.9
,
clang++-4.0
,
clang++-5.0
,
clang++-6.0
,
clang++-7
,
clang++-8
,
clang++-9
,
clang++-10
,
clang++-11
]
compiler
:
[
g++-4.8
,
g++-4.9
,
g++-5
,
g++-7
,
g++-8
,
g++-9
,
g++-10
,
clang++-3.5
,
clang++-3.6
,
clang++-3.7
,
clang++-3.8
,
clang++-3.9
,
clang++-4.0
,
clang++-5.0
,
clang++-6.0
,
clang++-7
,
clang++-8
,
clang++-9
,
clang++-10
]
steps
:
-
uses
:
actions/checkout@v2
-
name
:
cmake
run
:
cmake -S . -B build -DJSON_CI=On
-
name
:
build
run
:
cmake --build build --target ci_test_compiler_${{ matrix.compiler }}
run
:
cmake --build build --target ci_test_compiler_${{ matrix.compiler }}
\ No newline at end of file
.github/workflows/windows.yml
View file @
f2680359
...
...
@@ -5,29 +5,16 @@ on: [push, pull_request]
jobs
:
mingw
:
runs-on
:
windows-latest
strategy
:
matrix
:
architecture
:
[
x64
,
x86
]
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Set up MinGW
uses
:
egor-tensin/setup-mingw@v2
with
:
platform
:
x64
-
name
:
cmake
run
:
cmake -S . -B build -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On
-
name
:
build
run
:
cmake --build build --parallel
10
-
name
:
test
run
:
cd build ; ctest -j 10 -C Debug --output-on-failure
mingw_win32
:
runs-on
:
windows-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Set up MinGW
uses
:
egor-tensin/setup-mingw@v2
with
:
platform
:
x86
platform
:
${{ matrix.architecture }}
-
name
:
cmake
run
:
cmake -S . -B build -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On
-
name
:
build
...
...
@@ -37,35 +24,34 @@ jobs:
msvc2017
:
runs-on
:
windows-2016
strategy
:
matrix
:
build_type
:
[
Debug
,
Release
]
architecture
:
[
Win32
,
x64
]
steps
:
-
uses
:
actions/checkout@v2
-
name
:
cmake
run
:
cmake -S . -B build -G "Visual Studio 15 2017" -DJSON_BuildTests=On
-
name
:
build
run
:
cmake --build build --config Release --parallel
10
-
name
:
test
run
:
cd build ; ctest -j 10 -C Release --output-on-failure
msvc2017_latest
:
runs-on
:
windows-2016
steps
:
-
uses
:
actions/checkout@v2
run
:
cmake -S . -B build -G "Visual Studio 15 2017" -A ${{ matrix.architecture }} -DJSON_BuildTests=On -DCMAKE_EXE_LINKER_FLAGS="/STACK:4000000"
if
:
matrix.build_type == 'Release' && matrix.architecture == 'x64'
-
name
:
cmake
run
:
cmake -S . -B build -G "Visual Studio 15 2017" -DJSON_BuildTests=On -DCMAKE_CXX_FLAGS="/permissive- /std:c++latest /utf-8"
run
:
cmake -S . -B build -G "Visual Studio 15 2017" -A ${{ matrix.architecture }} -DJSON_BuildTests=On
if
:
matrix.build_type == 'Release' && matrix.architecture != 'x64'
-
name
:
cmake
run
:
cmake -S . -B build -G "Visual Studio 15 2017" -A ${{ matrix.architecture }} -DJSON_BuildTests=On -DJSON_FastTests=ON
if
:
matrix.build_type == 'Debug'
-
name
:
build
run
:
cmake --build build --config
Release
--parallel
10
run
:
cmake --build build --config
${{ matrix.build_type }}
--parallel
10
-
name
:
test
run
:
cd build ; ctest -j 10 -C
Release
--output-on-failure
run
:
cd build ; ctest -j 10 -C
${{ matrix.build_type }}
--output-on-failure
msvc2017_
win32
:
msvc2017_
latest
:
runs-on
:
windows-2016
steps
:
-
uses
:
actions/checkout@v2
-
name
:
cmake
run
:
cmake -S . -B build -G "Visual Studio 15 2017" -
A "Win32" -DJSON_BuildTests=On
run
:
cmake -S . -B build -G "Visual Studio 15 2017" -
DJSON_BuildTests=On -DCMAKE_CXX_FLAGS="/permissive- /std:c++latest /utf-8 /W4"
-
name
:
build
run
:
cmake --build build --config Release --parallel
10
-
name
:
test
...
...
@@ -73,47 +59,46 @@ jobs:
msvc2019
:
runs-on
:
windows-latest
strategy
:
matrix
:
build_type
:
[
Debug
,
Release
]
architecture
:
[
Win32
,
x64
]
steps
:
-
uses
:
actions/checkout@v2
-
name
:
cmake
run
:
cmake -S . -B build -G "Visual Studio 16 2019" -DJSON_BuildTests=On
-
name
:
build
run
:
cmake --build build --config Release --parallel
10
-
name
:
test
run
:
cd build ; ctest -j 10 -C Release --output-on-failure
msvc2019_latest
:
runs-on
:
windows-latest
steps
:
-
uses
:
actions/checkout@v2
run
:
cmake -S . -B build -G "Visual Studio 16 2019" -A ${{ matrix.architecture }} -DJSON_BuildTests=On
if
:
matrix.build_type == 'Release'
-
name
:
cmake
run
:
cmake -S . -B build -G "Visual Studio 16 2019" -DJSON_BuildTests=On -DCMAKE_CXX_FLAGS="/permissive- /std:c++latest /utf-8"
run
:
cmake -S . -B build -G "Visual Studio 16 2019" -A ${{ matrix.architecture }} -DJSON_BuildTests=On -DJSON_FastTests=ON
if
:
matrix.build_type == 'Debug'
-
name
:
build
run
:
cmake --build build --config
Release
--parallel
10
run
:
cmake --build build --config
${{ matrix.build_type }}
--parallel
10
-
name
:
test
run
:
cd build ; ctest -j 10 -C
Release
--output-on-failure
run
:
cd build ; ctest -j 10 -C
${{ matrix.build_type }}
--output-on-failure
msvc2019_
win32
:
msvc2019_
latest
:
runs-on
:
windows-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
cmake
run
:
cmake -S . -B build -G "Visual Studio 16 2019" -
A "Win32" -DJSON_BuildTests=On
run
:
cmake -S . -B build -G "Visual Studio 16 2019" -
DJSON_BuildTests=On -DCMAKE_CXX_FLAGS="/permissive- /std:c++latest /utf-8 /W4"
-
name
:
build
run
:
cmake --build build --config Release --parallel
10
-
name
:
test
run
:
cd build ; ctest -j 10 -C Release --output-on-failure
clang
10
:
clang
:
runs-on
:
windows-latest
strategy
:
matrix
:
version
:
[
10
,
11
]
steps
:
-
uses
:
actions/checkout@v2
-
name
:
install Clang
run
:
curl -fsSL -o LLVM
10.exe https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/LLVM-10.0.0-win64.exe ; 7z x LLVM10
.exe -y -o"C:/Program Files/LLVM"
run
:
curl -fsSL -o LLVM
${{ matrix.version }}.exe https://github.com/llvm/llvm-project/releases/download/llvmorg-${{ matrix.version }}.0.0/LLVM-${{ matrix.version }}.0.0-win64.exe ; 7z x LLVM${{ matrix.version }}
.exe -y -o"C:/Program Files/LLVM"
-
name
:
cmake
run
:
cmake -S . -B build -DCMAKE_CXX_COMPILER="C:/Program Files/LLVM/bin/clang++.exe" -G"MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On
-
name
:
build
...
...
@@ -121,39 +106,16 @@ jobs:
-
name
:
test
run
:
cd build ; ctest -j 10 -C Debug --exclude-regex "test-unicode" --output-on-failure
clang11
:
runs-on
:
windows-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
install Clang
run
:
curl -fsSL -o LLVM11.exe https://github.com/llvm/llvm-project/releases/download/llvmorg-11.0.0/LLVM-11.0.0-win64.exe ; 7z x LLVM11.exe -y -o"C:/Program Files/LLVM"
-
name
:
cmake
run
:
cmake -S . -B build -DCMAKE_CXX_COMPILER="C:/Program Files/LLVM/bin/clang++.exe" -G"MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On
-
name
:
build
run
:
cmake --build build --parallel
10
-
name
:
test
run
:
cd build ; ctest -j 10 -C Debug --exclude-regex "test-unicode" --output-on-failure
clang-cl-10-x64
:
runs-on
:
windows-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
cmake
run
:
cmake -S . -B build -G "Visual Studio 16 2019" -A x64 -T ClangCL -DJSON_BuildTests=On
-
name
:
build
run
:
cmake --build build --config Debug --parallel
10
-
name
:
test
run
:
cd build ; ctest -j 10 -C Debug --exclude-regex "test-unicode" --output-on-failure
clang-cl-10-x86
:
clang-cl-11
:
runs-on
:
windows-latest
strategy
:
matrix
:
architecture
:
[
Win32
,
x64
]
steps
:
-
uses
:
actions/checkout@v2
-
name
:
cmake
run
:
cmake -S . -B build -G "Visual Studio 16 2019" -A
Win32
-T ClangCL -DJSON_BuildTests=On
run
:
cmake -S . -B build -G "Visual Studio 16 2019" -A
${{ matrix.architecture }}
-T ClangCL -DJSON_BuildTests=On
-
name
:
build
run
:
cmake --build build --config Debug --parallel
10
-
name
:
test
...
...
.travis.yml
View file @
f2680359
...
...
@@ -46,12 +46,6 @@ matrix:
-
os
:
osx
osx_image
:
xcode10.2
-
os
:
osx
osx_image
:
xcode11.2
-
os
:
osx
osx_image
:
xcode12
# Linux / GCC
-
os
:
linux
...
...
README.md
View file @
f2680359
...
...
@@ -1232,35 +1232,51 @@ The following compilers are currently used in continuous integration at [Travis]
| Compiler | Operating System | CI Provider |
|-------------------------------------------------------------------|--------------------|----------------|
| Apple Clang 10.0.1 (clang-1001.0.46.4); Xcode 10.2.1 | macOS 10.14.4 | Travis |
| Apple Clang 11.0.0 (clang-1100.0.33.12); Xcode 11.2.1 | macOS 10.14.6 | Travis |
| Apple Clang 11.0.3 (clang-1103.0.32.59); Xcode 11.4.1 | macOS 10.15.4 | GitHub Actions |
| Apple Clang 12.0.0 (clang-1200.0.22.7); Xcode 11.4.1 | macOS 10.15.5 | Travis |
| Clang 3.5.0 (3.5.0-4ubuntu2
\~
trusty2) | Ubuntu 14.04.5 LTS | Travis |
| Clang 3.6.2 (3.6.2-svn240577-1
\~
exp1) | Ubuntu 14.04.5 LTS | Travis |
| Clang 3.7.1 (3.7.1-svn253571-1
\~
exp1) | Ubuntu 14.04.5 LTS | Travis |
| Clang 3.8.0 (3.8.0-2ubuntu3
\~
trusty5) | Ubuntu 14.04.5 LTS | Travis |
| Clang 3.9.1 (3.9.1-4ubuntu3
\~
14.04.3) | Ubuntu 14.04.5 LTS | Travis |
| Clang 4.0.1 (4.0.1-svn305264-1
\~
exp1) | Ubuntu 14.04.5 LTS | Travis |
| Clang 5.0.2 (version 5.0.2-svn328729-1
\~
exp1
\~
20180509123505.100) | Ubuntu 14.04.5 LTS | Travis |
| Clang 6.0.1 (6.0.1-svn334776-1
\~
exp1
\~
20190309042707.121) | Ubuntu 14.04.5 LTS | Travis |
| Clang 7.1.0 (7.1.0-svn353565-1
\~
exp1
\~
20190419134007.64) | Ubuntu 14.04.5 LTS | Travis |
| Clang 7.5.0 (Ubuntu 7.5.0-3ubuntu1
\~
18.04) | Ubuntu 18.04.4 LTS | Travis |
| Clang 9.0.0 (x86_64-pc-windows-msvc) | Windows-10.0.17763 | GitHub Actions |
| Clang 10.0.0 (x86_64-pc-windows-msvc) | Windows-10.0.17763 | GitHub Actions |
| GCC 4.8.5 (Ubuntu 4.8.5-4ubuntu8
\~
14.04.2) | Ubuntu 14.04.5 LTS | Travis |
| GCC 4.9.4 (Ubuntu 4.9.4-2ubuntu1
\~
14.04.1) | Ubuntu 14.04.5 LTS | Travis |
| GCC 5.5.0 (Ubuntu 5.5.0-12ubuntu1
\~
14.04) | Ubuntu 14.04.5 LTS | Travis |
| GCC 6.5.0 (Ubuntu 6.5.0-2ubuntu1
\~
14.04.1) | Ubuntu 14.04.5 LTS | Travis |
| GCC 7.3.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) | Windows-6.3.9600 | AppVeyor |
| GCC 7.5.0 (Ubuntu 7.5.0-3ubuntu1
\~
14.04.1) | Ubuntu 14.04.5 LTS | Travis |
| GCC 7.5.0 (Ubuntu 7.5.0-3ubuntu1
\~
18.04) | Ubuntu 18.04.4 LTS | GitHub Actions |
| GCC 8.4.0 (Ubuntu 8.4.0-1ubuntu1
\~
14.04) | Ubuntu 14.04.5 LTS | Travis |
| GCC 9.3.0 (Ubuntu 9.3.0-11ubuntu0
\~
14.04) | Ubuntu 14.04.5 LTS | Travis |
| MSVC 19.0.24241.7 (Build Engine version 14.0.25420.1) | Windows-6.3.9600 | AppVeyor |
| MSVC 19.16.27035.0 (15.9.21+g9802d43bc3 for .NET Framework) | Windows-10.0.14393 | AppVeyor |
| MSVC 19.25.28614.0 (Build Engine version 16.5.0+d4cbfca49 for .NET Framework) | Windows-10.0.17763 | AppVeyor |
| MSVC 19.25.28614.0 (Build Engine version 16.5.0+d4cbfca49 for .NET Framework) | Windows-10.0.17763 | GitHub Actions |
| MSVC 19.25.28614.0 (Build Engine version 16.5.0+d4cbfca49 for .NET Framework) with ClangCL 10.0.0 | Windows-10.0.17763 | GitHub Actions |
| Apple Clang 10.0.1 (clang-1001.0.46.4); Xcode 10.3 | macOS 10.15.7 | GitHub Actions |
| Apple Clang 11.0.0 (clang-1100.0.33.12); Xcode 11.2.1 | macOS 10.15.7 | GitHub Actions |
| Apple Clang 11.0.0 (clang-1100.0.33.17); Xcode 11.3.1 | macOS 10.15.7 | GitHub Actions |
| Apple Clang 11.0.3 (clang-1103.0.32.59); Xcode 11.4.1 | macOS 10.15.7 | GitHub Actions |
| Apple Clang 11.0.3 (clang-1103.0.32.62); Xcode 11.5 | macOS 10.15.7 | GitHub Actions |
| Apple Clang 11.0.3 (clang-1103.0.32.62); Xcode 11.6 | macOS 10.15.7 | GitHub Actions |
| Apple Clang 11.0.3 (clang-1103.0.32.62); Xcode 11.7 | macOS 10.15.7 | GitHub Actions |
| Apple Clang 12.0.0 (clang-1200.0.32.2); Xcode 12 | macOS 10.15.7 | GitHub Actions |
| Apple Clang 12.0.0 (clang-1200.0.32.21); Xcode 12.1 | macOS 10.15.7 | GitHub Actions |
| Apple Clang 12.0.0 (clang-1200.0.32.21); Xcode 12.1.1 | macOS 10.15.7 | GitHub Actions |
| Apple Clang 12.0.0 (clang-1200.0.32.27); Xcode 12.2 | macOS 10.15.7 | GitHub Actions |
| Apple Clang 12.0.0 (clang-1200.0.32.28); Xcode 12.3 | macOS 10.15.7 | GitHub Actions |
| Apple Clang 12.0.0 (clang-1200.0.32.29); Xcode 12.4 | macOS 10.15.7 | GitHub Actions |
| GCC 4.8.5 (Ubuntu 4.8.5-4ubuntu2) | Ubuntu 20.04.2 LTS | GitHub Actions |
| GCC 4.9.3 (Ubuntu 4.9.3-13ubuntu2) | Ubuntu 20.04.2 LTS | GitHub Actions |
| GCC 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.12) | Ubuntu 20.04.2 LTS | GitHub Actions |
| GCC 6.5.0 (Ubuntu 6.5.0-2ubuntu1~14.04.1) | Ubuntu 14.04.5 LTS | Travis |
| GCC 7.5.0 (Ubuntu 7.5.0-6ubuntu2) | Ubuntu 20.04.2 LTS | GitHub Actions |
| GCC 8.1.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) | Windows-10.0.17763 | GitHub Actions |
| GCC 8.1.0 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) | Windows-10.0.17763 | GitHub Actions |
| GCC 8.4.0 (Ubuntu 8.4.0-3ubuntu2) | Ubuntu 20.04.2 LTS | GitHub Actions |
| GCC 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) | Ubuntu 20.04.2 LTS | GitHub Actions |
| GCC 10.2.0 (Ubuntu 10.2.0-5ubuntu1~20.04) | Ubuntu 20.04.2 LTS | GitHub Actions |
| GCC 11.0.1 20210321 (experimental) | Ubuntu 20.04.2 LTS | GitHub Actions |
| Clang 3.5.2 (3.5.2-3ubuntu1) | Ubuntu 20.04.2 LTS | GitHub Actions |
| Clang 3.6.2 (3.6.2-3ubuntu2) | Ubuntu 20.04.2 LTS | GitHub Actions |
| Clang 3.7.1 (3.7.1-2ubuntu2) | Ubuntu 20.04.2 LTS | GitHub Actions |
| Clang 3.8.0 (3.8.0-2ubuntu4) | Ubuntu 20.04.2 LTS | GitHub Actions |
| Clang 3.9.1 (3.9.1-4ubuntu3
\~
16.04.2) | Ubuntu 20.04.2 LTS | GitHub Actions |
| Clang 4.0.0 (4.0.0-1ubuntu1
\~
16.04.2) | Ubuntu 20.04.2 LTS | GitHub Actions |
| Clang 5.0.0 (5.0.0-3
\~
16.04.1) | Ubuntu 20.04.2 LTS | GitHub Actions |
| Clang 6.0.1 (6.0.1-14) | Ubuntu 20.04.2 LTS | GitHub Actions |
| Clang 7.0.1 (7.0.1-12) | Ubuntu 20.04.2 LTS | GitHub Actions |
| Clang 8.0.1 (8.0.1-9) | Ubuntu 20.04.2 LTS | GitHub Actions |
| Clang 9.0.1 (9.0.1-12) | Ubuntu 20.04.2 LTS | GitHub Actions |
| Clang 10.0.0 (10.0.0-4ubuntu1) | Ubuntu 20.04.2 LTS | GitHub Actions |
| Clang 10.0.0 with GNU-like command-line | Windows-10.0.17763 | GitHub Actions |
| Clang 11.0.0 with GNU-like command-line | Windows-10.0.17763 | GitHub Actions |
| Clang 11.0.0 with MSVC-like command-line | Windows-10.0.17763 | GitHub Actions |
| Clang 11.1.0 (11.1.0-++20210204121720+1fdec59bffc1-1~exp1~20210203232336.162 | Ubuntu 20.04.2 LTS | GitHub Actions |
| Visual Studio 14 2015 MSVC 19.0.24241.7 (Build Engine version 14.0.25420.1) | Windows-6.3.9600 | AppVeyor |
| Visual Studio 15 2017 MSVC 19.16.27035.0 (Build Engine version 15.9.21+g9802d43bc3 for .NET Framework) | Windows-10.0.14393 | AppVeyor |
| Visual Studio 15 2017 MSVC 19.16.27045.0 (Build Engine version 15.9.21+g9802d43bc3 for .NET Framework) | Windows-10.0.14393 | GitHub Actions |
| Visual Studio 16 2019 MSVC 19.28.29912.0 (Build Engine version 16.9.0+57a23d249 for .NET Framework) | Windows-10.0.17763 | GitHub Actions |
| Visual Studio 16 2019 MSVC 19.28.29912.0 (Build Engine version 16.9.0+57a23d249 for .NET Framework) | Windows-10.0.17763 | AppVeyor |
## License
...
...
appveyor.yml
View file @
f2680359
...
...
@@ -10,30 +10,6 @@ environment:
CMAKE_OPTIONS
:
"
"
GENERATOR
:
Visual Studio 14
2015
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio
2017
configuration
:
Debug
platform
:
x86
CXX_FLAGS
:
"
"
LINKER_FLAGS
:
"
"
CMAKE_OPTIONS
:
"
"
GENERATOR
:
Visual Studio 15
2017
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio
2019
configuration
:
Debug
platform
:
x86
CXX_FLAGS
:
"
"
LINKER_FLAGS
:
"
"
CMAKE_OPTIONS
:
"
"
GENERATOR
:
Visual Studio 16
2019
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio
2019
configuration
:
Debug
platform
:
x64
CXX_FLAGS
:
"
"
LINKER_FLAGS
:
"
"
CMAKE_OPTIONS
:
"
"
GENERATOR
:
Visual Studio 16
2019
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio
2015
configuration
:
Release
platform
:
x86
...
...
@@ -83,14 +59,6 @@ environment:
CMAKE_OPTIONS
:
"
"
GENERATOR
:
Visual Studio 15
2017
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio
2019
configuration
:
Release
platform
:
x64
CXX_FLAGS
:
"
"
LINKER_FLAGS
:
"
"
CMAKE_OPTIONS
:
"
"
GENERATOR
:
Visual Studio 16
2019
init
:
-
cmake --version
-
msbuild /version
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment