-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into arm64-aarch64
# Conflicts: # .github/workflows/release.yml # pom.xml
- Loading branch information
Showing
16 changed files
with
617 additions
and
316 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Test changes | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-2019 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '17' | ||
distribution: 'adopt' | ||
|
||
- name: Build x86-64 mainnet | ||
run: | | ||
mkdir artifacts | ||
git fetch -a | ||
mvn clean compile package -DskipTests | ||
cp target/MyLocalTon.jar artifacts/MyLocalTon-x86-64.jar | ||
- name: Build x86-64 testnet | ||
run: | | ||
mvn clean compile package -DskipTests -Dton_branch=testnet | ||
cp target/MyLocalTon.jar artifacts/MyLocalTon-x86-64-testnet.jar | ||
- name: Build arm64-aarch64 mainnet | ||
run: | | ||
git checkout arm64-aarch64 | ||
mvn clean compile package -DskipTests | ||
cp target/MyLocalTon.jar artifacts/MyLocalTon-arm64.jar | ||
- name: Build arm64-aarch64 testnet | ||
run: | | ||
mvn clean compile package -DskipTests -Dton_branch=testnet | ||
cp target/MyLocalTon.jar artifacts/MyLocalTon-arm64-testnet.jar | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: All-MyLocalTon-Jars | ||
path: artifacts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
### Changes in this release | ||
|
||
- Update TON binaries as of 17.01.2024 | ||
- added support of headless java | ||
- added nogui argument | ||
- added <ip> argument in order to listen on specified ip address |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.