From 17729e0ccf9d7dafc1e137bbfb309339ed266b85 Mon Sep 17 00:00:00 2001 From: RoiArthurB Date: Mon, 25 Apr 2022 14:36:03 +0700 Subject: [PATCH] [GHA MAC] Use default Xcode version Was hardcoded on 13.0 from before it turns default one ci release --- .github/actions/macOS-sign/action.yaml | 1 - travis/mac-sign.sh | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/actions/macOS-sign/action.yaml b/.github/actions/macOS-sign/action.yaml index f13b37b7ca..9e4fcee7c8 100644 --- a/.github/actions/macOS-sign/action.yaml +++ b/.github/actions/macOS-sign/action.yaml @@ -33,7 +33,6 @@ runs: shell: bash run: | # Change XCode version - sudo xcode-select -s "/Applications/Xcode_13.0.app" export JAVA_HOME=$JAVA_HOME_11_X64 mkdir -p ${{ github.workspace }}/artifacts/work diff --git a/travis/mac-sign.sh b/travis/mac-sign.sh index 086dbb2c41..bce809c37c 100644 --- a/travis/mac-sign.sh +++ b/travis/mac-sign.sh @@ -12,7 +12,7 @@ function signInJar(){ echo "$1" # Reverse list to prevent concurrency signature submition per architecture - if [[ $IS_WITH_JDK ]]; then + if $IS_WITH_JDK; then tail -r filelist.txt > reverse-filelist.txt rm filelist.txt mv reverse-filelist.txt filelist.txt @@ -43,7 +43,7 @@ echo $IS_WITH_JDK find ./ -name "*jar" > jarlist.txt # Reverse list to prevent concurrency signature submition per architecture -if [[ $IS_WITH_JDK ]]; then +if $IS_WITH_JDK; then tail -r filelist.txt > reverse-filelist.txt rm filelist.txt mv reverse-filelist.txt filelist.txt