Skip to content

Commit c6568b7

Browse files
authored
4.2.0 release preparation. (#716)
* Create 4.2.0 release notes. * Fix in build_linux.sh: don't decorate BUILD_DIR when env var is set. * Upload assets via release script to workaround jammy dpl issue. * Use arm64 package name on all platforms. * On Windows do not run ktx2check pipe test that fails with Git for Windows v2.41.0.windows.1.
1 parent e405097 commit c6568b7

6 files changed

+100
-330
lines changed

.travis.yml

+30-29
Original file line numberDiff line numberDiff line change
@@ -340,38 +340,39 @@ deploy:
340340
# #branch: master
341341
# condition: $PACKAGE = YES
342342
# ----------------------- dpl v1 -------------------------
343-
- provider: releases
344-
token: $GITHUB_TOKEN # Set in the repo settings page as a secure variable
345-
name: $TRAVIS_TAG
346-
skip_cleanup: true
347-
# We can't use
348-
#body: $RELNOTES
349-
# because a bug in v1's backing Ruby code does not allow passing it
350-
# command line option arguments that contain newlines leading to an
351-
# error on Travis when we try.
352-
# See https://github.com/travis-ci/dpl/issues/155.
353-
#
354-
# The obvious workarounds of literal "\n" or "<br />" do not work.
355-
# The text is passed to GitHub but "\n" is shown literally. While "<br />"
356-
# causes a newline in the rendering, the markdown interpreter does not
357-
# recognize it as an actual newline so never changes the format from
358-
# the initial heading format.
359-
#
360-
# Since we can't use either this or v2 to deply the release notes, we've
361-
# rolled our own provider script for the body.
362-
file_glob: true
363-
file:
364-
- $BUILD_DIR/KTX-Software-*-*
365-
draft: true
366-
prerelease: true
367-
on:
368-
tags: true
369-
#branch: master
370-
condition: $PACKAGE = "YES" && $TRAVIS_TAG =~ ^v[0-9].*
343+
##### Not working on jammy runners at present. Do everything via our script.
344+
# - provider: releases
345+
# token: $GITHUB_TOKEN # Set in the repo settings page as a secure variable
346+
# name: $TRAVIS_TAG
347+
# skip_cleanup: true
348+
# # We can't use
349+
# #body: $RELNOTES
350+
# # because a bug in v1's backing Ruby code does not allow passing it
351+
# # command line option arguments that contain newlines leading to an
352+
# # error on Travis when we try.
353+
# # See https://github.com/travis-ci/dpl/issues/155.
354+
# #
355+
# # The obvious workarounds of literal "\n" or "<br />" do not work.
356+
# # The text is passed to GitHub but "\n" is shown literally. While "<br />"
357+
# # causes a newline in the rendering, the markdown interpreter does not
358+
# # recognize it as an actual newline so never changes the format from
359+
# # the initial heading format.
360+
# #
361+
# # Since we can't use either this or v2 to deply the release notes, we've
362+
# # rolled our own provider script for the body.
363+
# file_glob: true
364+
# file:
365+
# - $BUILD_DIR/KTX-Software-*-*
366+
# draft: true
367+
# prerelease: true
368+
# on:
369+
# tags: true
370+
# #branch: master
371+
# condition: $PACKAGE = "YES" && $TRAVIS_TAG =~ ^v[0-9].*
371372

372373
- provider: script
373374
edge: true
374-
script: ruby ci_scripts/github_release.rb -s ${GITHUB_TOKEN} -r ${TRAVIS_REPO_SLUG} -c $REL_DESC_FILE -t ${TRAVIS_TAG} --draft true --prerelease true
375+
script: ruby ci_scripts/github_release.rb -s ${GITHUB_TOKEN} -r ${TRAVIS_REPO_SLUG} -c $REL_DESC_FILE -t ${TRAVIS_TAG} --overwrite true --draft true --prerelease true $BUILD_DIR/KTX-Software-*-*
375376
on:
376377
tags: true
377378
#branch: master

CMakeLists.txt

+10-5
Original file line numberDiff line numberDiff line change
@@ -1068,15 +1068,20 @@ if( APPLE AND CMAKE_OSX_ARCHITECTURES )
10681068
else()
10691069
set(processor_name ${arch0})
10701070
endif()
1071-
elseif(CMAKE_CXX_COMPILER_ARCHITECTURE_ID)
1071+
elseif( CMAKE_CXX_COMPILER_ARCHITECTURE_ID )
10721072
# When targeting Windows arm64 CMAKE_SYSTEM_PROCESSOR will incorrectly
1073-
# return AMD64.
1074-
# See: https://gitlab.kitware.com/cmake/cmake/-/issues/15170
1073+
# return AMD64. See: https://gitlab.kitware.com/cmake/cmake/-/issues/15170.
10751074
# We assume that when building for Windows arm64 that we are using MSVC
1076-
# so we can detect the processor arch name with CMAKE_CXX_COMPILER_ARCHITECTURE_ID
1075+
# or ClangCL so we can detect the processor arch name with
1076+
# CMAKE_CXX_COMPILER_ARCHITECTURE_ID
10771077
set(processor_name ${CMAKE_CXX_COMPILER_ARCHITECTURE_ID})
10781078
elseif( CMAKE_SYSTEM_PROCESSOR )
1079-
set(processor_name ${CMAKE_SYSTEM_PROCESSOR})
1079+
if( ${CMAKE_SYSTEM_PROCESSOR} STREQUAL "aarch64" )
1080+
# Use consistent package name for all platforms.
1081+
set(processor_name "arm64")
1082+
else()
1083+
set(processor_name ${CMAKE_SYSTEM_PROCESSOR})
1084+
endif()
10801085
elseif( IOS )
10811086
# CMAKE_SYSTEM_PROCESSOR not set when building for iOS.
10821087
set(processor_name "arm64")

0 commit comments

Comments
 (0)