Skip to content

Commit

Permalink
Apply rebranding changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ice-hermes committed Dec 5, 2024
1 parent 7151ff2 commit fef1c2f
Show file tree
Hide file tree
Showing 1,394 changed files with 14,799 additions and 14,788 deletions.
2 changes: 1 addition & 1 deletion .clang_complete
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
-iquote tdactor/
-iquote tdnet/
-iquote tdutils/
-iquote ../ton-build/tdutils/
-iquote ../ion-build/tdutils/
-iquote crypto/
-I/opt/local/include/
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<!--- How reliably can you reproduce the issue, what are the steps to do so? -->

<!-- What version of TON are you using, where did you get it (github actions, self-compiled, etc)? -->
<!-- What version of ION are you using, where did you get it (github actions, self-compiled, etc)? -->

<!-- What type of machine are you observing the error on (OS/CPU and disk type)? -->

Expand Down
10 changes: 5 additions & 5 deletions .github/script/amd64-20.04.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ WORKDIR /

ARG BRANCH
ARG REPO
RUN git clone --recurse-submodules https://github.com/$REPO ton && cd ton && git checkout $BRANCH && git submodule update
RUN git clone --recurse-submodules https://github.com/$REPO ion && cd ion && git checkout $BRANCH && git submodule update

WORKDIR /ton
RUN mkdir /ton/build
WORKDIR /ton/build
WORKDIR /ion
RUN mkdir /ion/build
WORKDIR /ion/build
ENV CC clang
ENV CXX clang++
ENV CCACHE_DISABLE 1
RUN cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DPORTABLE=1 -DTON_ARCH= -DCMAKE_CXX_FLAGS="-mavx2" ..
RUN cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DPORTABLE=1 -DION_ARCH= -DCMAKE_CXX_FLAGS="-mavx2" ..
RUN ninja storage-daemon storage-daemon-cli tonlibjson blockchain-explorer fift func tolk validator-engine validator-engine-console create-state generate-random-id create-hardfork dht-server lite-client
10 changes: 5 additions & 5 deletions .github/script/amd64-22.04.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ WORKDIR /

ARG BRANCH
ARG REPO
RUN git clone --recurse-submodules https://github.com/$REPO ton && cd ton && git checkout $BRANCH && git submodule update
RUN git clone --recurse-submodules https://github.com/$REPO ion && cd ion && git checkout $BRANCH && git submodule update

WORKDIR /ton
RUN mkdir /ton/build
WORKDIR /ton/build
WORKDIR /ion
RUN mkdir /ion/build
WORKDIR /ion/build
ENV CC clang
ENV CXX clang++
ENV CCACHE_DISABLE 1
RUN cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DPORTABLE=1 -DTON_ARCH= -DCMAKE_CXX_FLAGS="-mavx2" ..
RUN cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DPORTABLE=1 -DION_ARCH= -DCMAKE_CXX_FLAGS="-mavx2" ..
RUN ninja storage-daemon storage-daemon-cli tonlibjson blockchain-explorer fift func tolk validator-engine validator-engine-console create-state generate-random-id create-hardfork dht-server lite-client
10 changes: 5 additions & 5 deletions .github/script/arm64-20.04.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ WORKDIR /

ARG BRANCH
ARG REPO
RUN git clone --recurse-submodules https://github.com/$REPO ton && cd ton && git checkout $BRANCH && git submodule update
RUN git clone --recurse-submodules https://github.com/$REPO ion && cd ion && git checkout $BRANCH && git submodule update

WORKDIR /ton
RUN mkdir /ton/build
WORKDIR /ton/build
WORKDIR /ion
RUN mkdir /ion/build
WORKDIR /ion/build
ENV CC clang
ENV CXX clang++
ENV CCACHE_DISABLE 1
RUN cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DPORTABLE=1 -DTON_ARCH= ..
RUN cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DPORTABLE=1 -DION_ARCH= ..
RUN ninja storage-daemon storage-daemon-cli tonlibjson blockchain-explorer fift func tolk validator-engine validator-engine-console create-state generate-random-id dht-server lite-client
10 changes: 5 additions & 5 deletions .github/script/arm64-22.04.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ WORKDIR /

ARG BRANCH
ARG REPO
RUN git clone --recurse-submodules https://github.com/$REPO ton && cd ton && git checkout $BRANCH && git submodule update
RUN git clone --recurse-submodules https://github.com/$REPO ion && cd ion && git checkout $BRANCH && git submodule update

WORKDIR /ton
RUN mkdir /ton/build
WORKDIR /ton/build
WORKDIR /ion
RUN mkdir /ion/build
WORKDIR /ion/build
ENV CC clang
ENV CXX clang++
ENV CCACHE_DISABLE 1
RUN cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DPORTABLE=1 -DTON_ARCH= ..
RUN cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DPORTABLE=1 -DION_ARCH= ..
RUN ninja storage-daemon storage-daemon-cli tonlibjson blockchain-explorer fift func tolk validator-engine validator-engine-console create-state generate-random-id dht-server lite-client
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
zlib1g-dev libssl-dev libreadline-dev libmicrohttpd-dev pkg-config libgsl-dev python3 python3-dev \
libtool autoconf libsodium-dev libsecp256k1-dev liblz4-dev
- name: Build TON
- name: Build ION
run: |
cp assembly/android/build-android-tonlib.sh .
chmod +x build-android-tonlib.sh
Expand All @@ -28,5 +28,5 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: ton-android-tonlib
name: ion-android-tonlib
path: artifacts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ubuntu TON build (shared, x86-64)
name: Ubuntu ION build (shared, x86-64)

on: [push,workflow_dispatch,workflow_call]

Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
chmod +x llvm.sh
sudo ./llvm.sh 16 all
- name: Build TON
- name: Build ION
run: |
cp assembly/native/build-ubuntu-shared.sh .
chmod +x build-ubuntu-shared.sh
Expand All @@ -42,5 +42,5 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: ton-binaries-${{ matrix.os }}
name: ion-binaries-${{ matrix.os }}
path: artifacts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MacOS-15 TON build (shared, arm64)
name: MacOS-15 ION build (shared, arm64)

on: [push,workflow_dispatch,workflow_call]

Expand All @@ -12,7 +12,7 @@ jobs:
with:
submodules: 'recursive'

- name: Build TON
- name: Build ION
run: |
cp assembly/native/build-macos-shared.sh .
chmod +x build-macos-shared.sh
Expand All @@ -21,5 +21,5 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: ton-binaries-macos-15
name: ion-binaries-macos-15
path: artifacts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MacOS-14 TON build (shared, arm64)
name: MacOS-14 ION build (shared, arm64)

on: [push,workflow_dispatch,workflow_call]

Expand All @@ -12,7 +12,7 @@ jobs:
with:
submodules: 'recursive'

- name: Build TON
- name: Build ION
run: |
cp assembly/native/build-macos-shared.sh .
chmod +x build-macos-shared.sh
Expand All @@ -21,5 +21,5 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: ton-binaries-macos-14
name: ion-binaries-macos-14
path: artifacts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MacOS TON build (shared, x86-64)
name: MacOS ION build (shared, x86-64)

on: [push,workflow_dispatch,workflow_call]

Expand All @@ -12,7 +12,7 @@ jobs:
with:
submodules: 'recursive'

- name: Build TON
- name: Build ION
run: |
cp assembly/native/build-macos-shared.sh .
chmod +x build-macos-shared.sh
Expand All @@ -21,5 +21,5 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: ton-binaries-macos-12
name: ion-binaries-macos-12
path: artifacts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Emscripten TON build (wasm)
name: Emscripten ION build (wasm)

on: [push,workflow_dispatch,workflow_call]

Expand All @@ -17,7 +17,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y build-essential git openssl cmake ninja-build zlib1g-dev libssl-dev libsecp256k1-dev libmicrohttpd-dev libsodium-dev liblz4-dev
- name: Build TON WASM artifacts
- name: Build ION WASM artifacts
run: |
cp assembly/wasm/fift-func-wasm-build-ubuntu.sh .
chmod +x fift-func-wasm-build-ubuntu.sh
Expand All @@ -26,5 +26,5 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: ton-wasm-binaries
name: ion-wasm-binaries
path: artifacts
Loading

0 comments on commit fef1c2f

Please sign in to comment.