Skip to content
This repository was archived by the owner on Mar 25, 2026. It is now read-only.

Commit a698ca7

Browse files
authored
Merge pull request #75 from JetBrains/ivan.matkov/fix-publishing
Increment version for fix publishing
2 parents 578a257 + e156076 commit a698ca7

4 files changed

Lines changed: 15 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ permissions:
1616
contents: write
1717

1818
env:
19-
version: m138-80d088a-1
19+
version: m138-80d088a-2
2020

2121
jobs:
2222
macos:
23-
runs-on: ${{ fromJson('{"macos":"macos-13","ios":"macos-13","iosSim":"macos-13","tvos":"macos-13","tvosSim":"macos-13"}')[matrix.target] }}
23+
runs-on: ${{ fromJson('{"macos":"macos-15","ios":"macos-15","iosSim":"macos-15","tvos":"macos-15","tvosSim":"macos-15"}')[matrix.target] }}
2424
strategy:
2525
matrix:
2626
target: ["macos", "ios", "iosSim", "tvos", "tvosSim"]

script/prepare_linux.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,8 @@ apt-get install gcc-9 g++-9 -y
1313
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-9
1414
update-alternatives --config gcc
1515

16-
apt-get install git python3 wget -y
17-
apt-get install ninja-build fontconfig libfontconfig1-dev libglu1-mesa-dev curl zip -y
16+
apt-get install git wget -y
17+
apt-get install ninja-build fontconfig libfontconfig1-dev libglu1-mesa-dev curl zip -y
18+
19+
apt-get install python3.9 -y
20+
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 100

script/prepare_linux_arm.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@ apt-get update -y
77
apt-get install binutils build-essential -y
88
apt-get install software-properties-common -y
99
add-apt-repository ppa:git-core/ppa -y
10-
apt-get install python3 git fontconfig libfontconfig1-dev libglu1-mesa-dev curl wget -y
10+
apt-get install git fontconfig libfontconfig1-dev libglu1-mesa-dev curl wget -y
1111
apt-get install clang -y
12+
13+
apt-get install python3.9 -y
14+
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 100

script/prepare_linux_wasm.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,7 @@ export DEBIAN_FRONTEND=noninteractive
66
apt-get update -y
77
apt-get install binutils build-essential -y
88
apt-get install software-properties-common -y
9-
apt-get install python3 git curl wget -y
9+
apt-get install git curl wget -y
10+
11+
apt-get install python3.9 -y
12+
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 100

0 commit comments

Comments
 (0)