Skip to content

Commit 22d7065

Browse files
committed
Revert "Merge branch 'testnet' into quic-stats"
This reverts commit 5f8fe38, reversing changes made to d2d59e5.
1 parent 5f8fe38 commit 22d7065

File tree

956 files changed

+167884
-3335
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

956 files changed

+167884
-3335
lines changed

.github/workflows/build-ton-linux-android-tonlib.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,16 @@ jobs:
88

99
steps:
1010
- name: Check out repository
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v3
1212
with:
1313
submodules: 'recursive'
1414

1515
- name: Install system libraries
1616
run: |
1717
sudo apt-get update
1818
sudo apt-get install -y build-essential git cmake ninja-build automake libtool texinfo autoconf libgflags-dev \
19-
zlib1g-dev libreadline-dev libmicrohttpd-dev pkg-config libgsl-dev python3 python3-dev \
20-
libtool autoconf libsecp256k1-dev
21-
22-
- name: Install llvm-21
23-
run: |
24-
lsb_release -a
25-
wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
26-
echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-21 main" | sudo tee /etc/apt/sources.list.d/llvm.list
27-
sudo apt-get -y update
28-
sudo apt-get install -y clang-21
19+
zlib1g-dev libssl-dev libreadline-dev libmicrohttpd-dev pkg-config libgsl-dev python3 python3-dev \
20+
libtool autoconf libsodium-dev libsecp256k1-dev liblz4-dev
2921
3022
- name: Cache Android NDK
3123
id: cache-android-ndk

.github/workflows/build-ton-linux-arm64-appimage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Check out repository
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v3
1212
with:
1313
submodules: 'recursive'
1414

.github/workflows/build-ton-linux-arm64-shared.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Check out repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v3
1616
with:
1717
submodules: 'recursive'
1818

.github/workflows/build-ton-linux-x86-64-appimage.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Check out repository
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v3
1212
with:
1313
submodules: 'recursive'
1414

@@ -37,6 +37,13 @@ jobs:
3737
path: 3pp
3838
key: ${{ runner.os }}-${{ runner.arch }}-ubuntu-22.04-3pp-${{ hashFiles('**/assembly/native/build-ubuntu-appimages.sh') }}
3939

40+
- name: Cache OpenSSL
41+
id: cache-openssl
42+
uses: actions/cache@v4
43+
with:
44+
path: openssl_3
45+
key: ${{ runner.os }}-${{ runner.arch }}-ubuntu-22.04-openssl_3-${{ hashFiles('**/assembly/native/build-ubuntu-appimages.sh') }}
46+
4047
- name: Restore cache TON
4148
uses: actions/cache/restore@v4
4249
with:

.github/workflows/build-ton-linux-x86-64-shared.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Check out repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v3
1616
with:
1717
submodules: 'recursive'
1818

.github/workflows/build-ton-linux-x86-64-werror.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Check out repository
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v3
1212
with:
1313
submodules: 'recursive'
1414

@@ -44,12 +44,12 @@ jobs:
4444
4545
- name: Check spaces at EOL
4646
run: |
47-
! git grep --cached -Il '\s$'
47+
! git grep --cached -Il '\s$' :!example/android/third_party
4848
4949
- name: Check C++ formatting
5050
run: |
5151
# TODO: Run clang-format only on changed files.
52-
clang-format-21 -i $(git ls-files '*.h' '*.hpp' '*.cpp' ':!^tolk/')
52+
clang-format-21 -i $(git ls-files '*.h' '*.hpp' '*.cpp' ':!^example/android/third_party' ':!^tolk/')
5353
git diff --exit-code
5454
5555
- name: Prepare Python environment

.github/workflows/build-ton-macos-14-arm64-portable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Check out repository
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v3
1212
with:
1313
submodules: 'recursive'
1414

.github/workflows/build-ton-macos-15-arm64-shared.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Check out repository
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v3
1212
with:
1313
submodules: 'recursive'
1414

.github/workflows/build-ton-macos-15-x86-64-portable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Check out repository
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v3
1212
with:
1313
submodules: 'recursive'
1414

.github/workflows/build-ton-macos-15-x86-64-shared.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Check out repository
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v3
1212
with:
1313
submodules: 'recursive'
1414

@@ -32,7 +32,8 @@ jobs:
3232

3333
- name: Build TON
3434
run: |
35-
git submodule sync --recursive; git submodule update;
35+
git submodule sync --recursive
36+
git submodule update
3637
cp assembly/native/build-macos-shared.sh .
3738
chmod +x build-macos-shared.sh
3839
./build-macos-shared.sh -t -c

0 commit comments

Comments
 (0)