Skip to content

Commit 3e5d659

Browse files
committed
Incremented version to 1.7.6.
Updated SPIRV-Cross, SPIRV-Tools, and glslang to the latest release versions. Updated boost and gtest versions used in CI.
1 parent 1d4cb19 commit 3e5d659

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ on:
99
env:
1010
CTEST_OUTPUT_ON_FAILURE: '1'
1111
GTEST_OUTPUT: xml:${{ github.workspace }}/test-results/
12-
boost_version: 1.84.0
12+
boost_version: 1.86.0
1313
cmake_common_args: >-
1414
-DCMAKE_FIND_ROOT_PATH=${{ github.workspace }}/dependencies
1515
-DCMAKE_PREFIX_PATH=${{ github.workspace }}/dependencies
1616
cores_count: '4'
1717
cores_mac_count: '3'
1818
dependency_location: "${{ github.workspace }}/dependencies"
19-
gtest_version: release-1.12.1
19+
gtest_version: v1.15.2
2020
msvc_version: 14.2
2121
msvc_toolset: 142
2222
test_results_location: "${{ github.workspace }}/test-results"
@@ -192,7 +192,7 @@ jobs:
192192
max_attempts: 5
193193
command: |-
194194
$underscoreVersion = "${{ env.boost_version }}".replace(".", "_")
195-
$url = "https://sourceforge.net/projects/boost/files/boost-binaries/${{ env.boost_version }}/boost_$underscoreVersion-msvc-${{ env.msvc_version }}-${{ matrix.bits }}.exe"
195+
$url = "https://versaweb.dl.sourceforge.net/project/boost/files/boost-binaries/${{ env.boost_version }}/boost_$underscoreVersion-msvc-${{ env.msvc_version }}-${{ matrix.bits }}.exe"
196196
(New-Object System.Net.WebClient).DownloadFile($url, "$env:TEMP\boost.exe")
197197
Start-Process -Wait -FilePath "$env:TEMP\boost.exe" "/SILENT","/SP-","/SUPPRESSMSGBOXES","/DIR=D:\boost"
198198
- name: Checkout gtest

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ endif()
8181

8282
set(MSL_MAJOR_VERSION 1)
8383
set(MSL_MINOR_VERSION 7)
84-
set(MSL_PATCH_VERSION 5)
84+
set(MSL_PATCH_VERSION 6)
8585
set(MSL_VERSION ${MSL_MAJOR_VERSION}.${MSL_MINOR_VERSION}.${MSL_PATCH_VERSION})
8686

8787
set(MSL_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})

Compile/SPIRV-Cross

Submodule SPIRV-Cross updated 225 files

Compile/SPIRV-Tools

Submodule SPIRV-Tools updated 120 files

Compile/glslang

Submodule glslang updated 758 files

Compile/include/MSL/Compile/TargetMetal.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#include <MSL/Config.h>
2020
#include <MSL/Compile/Export.h>
2121
#include <MSL/Compile/Target.h>
22-
#include <map>
2322

2423
/**
2524
* @file

0 commit comments

Comments
 (0)