Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ if(NOT JAGATI_Download)
option(JAGATI_Download "Should the Jagati be downloaded automatically" ON)
endif(NOT JAGATI_Download)
if(JAGATI_Download)
set(JAGATI_Checksum "f993c986a9a5ddb3caac6e19f4b64d29ff12f820503b4036303\
2279b124aa7f5c837907cc218227e58ff0df4228ecb549202a5c670dc7d8938cc7b9437dbe13e"
set(JAGATI_Checksum "6aa2eb83eca66c9a06519a1138e4d72b7a6243da13026020eb0\
644ffd4c89e566e9716cc16a9fcee15651b65a517fbc61d4002b2f9e0883143a54c6684aabcb4"
CACHE STRING "Check that when the Jagati is downloaded the right one is used (for consistency and security).")
set(JAGATI_Url "https://raw.githubusercontent.com/BlackToppStudios/Jagati/0.30.1/Jagati.cmake"
set(JAGATI_Url "https://raw.githubusercontent.com/BlackToppStudios/Jagati/0.30.2/Jagati.cmake"
CACHE STRING "Where to download the Jagati from.")
file(DOWNLOAD "${JAGATI_Url}" "${JAGATI_File}" EXPECTED_HASH SHA512=${JAGATI_Checksum})
endif(JAGATI_Download)
Expand Down
6 changes: 6 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ pipeline {
stage('Windows10Mingw32-Debug') {
agent { label "Windows10Mingw32" }
steps {
bat 'hostname'
checkout scm
bat 'if not exist "build-debug" mkdir build-debug'
dir('build-debug') {
Expand All @@ -254,6 +255,7 @@ pipeline {
stage('Windows10Mingw32-Release') {
agent { label "Windows10Mingw32" }
steps {
bat 'hostname'
checkout scm
bat 'if not exist "build-release" mkdir build-release'
dir('build-release') {
Expand All @@ -272,6 +274,7 @@ pipeline {
stage('Windows10Mingw64-Debug') {
agent { label "Windows10Mingw64" }
steps {
bat 'hostname'
checkout scm
bat 'if not exist "build-debug" mkdir build-debug'
dir('build-debug') {
Expand All @@ -289,6 +292,7 @@ pipeline {
stage('Windows10Mingw64-Release') {
agent { label "Windows10Mingw64" }
steps {
bat 'hostname'
checkout scm
bat 'if not exist "build-release" mkdir build-release'
dir('build-release') {
Expand All @@ -307,6 +311,7 @@ pipeline {
stage('Windows10MSVC-Debug') {
agent { label "Windows10MSVC" }
steps {
bat 'hostname'
checkout scm
bat 'if not exist "build-debug" mkdir build-debug'
dir('build-debug') {
Expand All @@ -323,6 +328,7 @@ pipeline {
stage('Windows10MSVC-Release') {
agent { label "Windows10MSVC" }
steps {
bat 'hostname'
checkout scm
bat 'if not exist "build-release" mkdir build-release'
dir('build-release') {
Expand Down