Skip to content

Commit

Permalink
Revert "try update jbr to fix rendering issue on macos"
Browse files Browse the repository at this point in the history
This reverts commit 5f6891b.
  • Loading branch information
Him188 committed Jan 14, 2025
1 parent 5f6891b commit 9f41fb5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -305,15 +305,15 @@ jobs:
name: 'Resolve JBR location'
run: |-
# Expand jbrLocationExpr
jbr_location_expr=$(eval echo ${{ runner.tool_cache }}/jbrsdk_jcef-21.0.5-osx-aarch64-b750.29.tar.gz)
jbr_location_expr=$(eval echo ${{ runner.tool_cache }}/jbrsdk_jcef-21.0.5-osx-aarch64-b631.8.tar.gz)
echo "jbrLocation=$jbr_location_expr" >> $GITHUB_OUTPUT
- id: 'step-3'
name: 'Get JBR 21 for macOS AArch64'
env:
jbrLocation: '${{ steps.step-2.outputs.jbrLocation }}'
run: |-
jbr_location="$jbrLocation"
checksum_url="https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_jcef-21.0.5-osx-aarch64-b750.29.tar.gz.checksum"
checksum_url="https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_jcef-21.0.5-osx-aarch64-b631.8.tar.gz.checksum"
checksum_file="checksum.tmp"
wget -q -O $checksum_file $checksum_url
Expand All @@ -325,7 +325,7 @@ jobs:
fi
if [ "$file_checksum" != "$expected_checksum" ]; then
wget -q --tries=3 https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_jcef-21.0.5-osx-aarch64-b750.29.tar.gz -O "$jbr_location"
wget -q --tries=3 https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_jcef-21.0.5-osx-aarch64-b631.8.tar.gz -O "$jbr_location"
file_checksum=$(shasum -a 512 "$jbr_location" | awk '{print $1}')
fi
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -428,15 +428,15 @@ jobs:
name: 'Resolve JBR location'
run: |-
# Expand jbrLocationExpr
jbr_location_expr=$(eval echo ${{ runner.tool_cache }}/jbrsdk_jcef-21.0.5-osx-aarch64-b750.29.tar.gz)
jbr_location_expr=$(eval echo ${{ runner.tool_cache }}/jbrsdk_jcef-21.0.5-osx-aarch64-b631.8.tar.gz)
echo "jbrLocation=$jbr_location_expr" >> $GITHUB_OUTPUT
- id: 'step-5'
name: 'Get JBR 21 for macOS AArch64'
env:
jbrLocation: '${{ steps.step-4.outputs.jbrLocation }}'
run: |-
jbr_location="$jbrLocation"
checksum_url="https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_jcef-21.0.5-osx-aarch64-b750.29.tar.gz.checksum"
checksum_url="https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_jcef-21.0.5-osx-aarch64-b631.8.tar.gz.checksum"
checksum_file="checksum.tmp"
wget -q -O $checksum_file $checksum_url
Expand All @@ -448,7 +448,7 @@ jobs:
fi
if [ "$file_checksum" != "$expected_checksum" ]; then
wget -q --tries=3 https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_jcef-21.0.5-osx-aarch64-b750.29.tar.gz -O "$jbr_location"
wget -q --tries=3 https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_jcef-21.0.5-osx-aarch64-b631.8.tar.gz -O "$jbr_location"
file_checksum=$(shasum -a 512 "$jbr_location" | awk '{print $1}')
fi
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/src.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -855,9 +855,9 @@ class WithMatrix(
fun JobBuilder<*>.installJbr21() {
// For mac
val jbrUrl = "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_jcef-21.0.5-osx-aarch64-b750.29.tar.gz"
val jbrUrl = "https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_jcef-21.0.5-osx-aarch64-b631.8.tar.gz"
val jbrChecksumUrl =
"https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_jcef-21.0.5-osx-aarch64-b750.29.tar.gz.checksum"
"https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk_jcef-21.0.5-osx-aarch64-b631.8.tar.gz.checksum"
val jbrFilename = jbrUrl.substringAfterLast('/')
Expand Down

0 comments on commit 9f41fb5

Please sign in to comment.