From 3a836cc3d250ad015f2cb2925a42afd75525a27e Mon Sep 17 00:00:00 2001 From: runner Date: Mon, 14 Aug 2023 08:49:11 +0000 Subject: [PATCH 01/39] create release --- ton.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ton.rb b/ton.rb index b7becb3..0afb4a4 100644 --- a/ton.rb +++ b/ton.rb @@ -4,10 +4,10 @@ class Ton < Formula if Hardware::CPU.arm? url "https://github.com/ton-blockchain/homebrew-ton/releases/latest/download/ton-brew-arm64.tar.gz" - sha256 "8805791123f2732eb476992b148a87e356f82cf1a48748ffe1dfd34ca9122517" #arm64 + sha256 "78ac5cf06fe4059f91f6db3706bd254fed5d26090901fc844e993cdb3ee6e883" #arm64 else url "https://github.com/ton-blockchain/homebrew-ton/releases/latest/download/ton-brew-x86-64.tar.gz" - sha256 "f75d041416f2b569ee2954a1dd267a03dedab28404ffb9e2b584ecedc3715f28" #amd64 + sha256 "b435ea609f93e566c3590d6247b446e29aa3953a18394517289b87ce8115a75b" #amd64 end license "LGPL-2.0-only" From 27a8d8b125ce87cb11b07d3d61ae2d4c695eb1c9 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 10:56:47 +0200 Subject: [PATCH 02/39] Create CI-test.yml --- .github/workflows/CI-test.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workflows/CI-test.yml diff --git a/.github/workflows/CI-test.yml b/.github/workflows/CI-test.yml new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/.github/workflows/CI-test.yml @@ -0,0 +1 @@ + From ed27ff20423d43246db7de65b00a1aff23f19bec Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 10:58:35 +0200 Subject: [PATCH 03/39] Update and rename CI-test.yml to CI-test- release.yml --- .github/workflows/CI-test- release.yml | 9 +++++++++ .github/workflows/CI-test.yml | 1 - 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/CI-test- release.yml delete mode 100644 .github/workflows/CI-test.yml diff --git a/.github/workflows/CI-test- release.yml b/.github/workflows/CI-test- release.yml new file mode 100644 index 0000000..0e5dcf2 --- /dev/null +++ b/.github/workflows/CI-test- release.yml @@ -0,0 +1,9 @@ +name: CI Test release + +on: [workflow_dispatch] + +permissions: write-all + +jobs: + create-release: + runs-on: macos-12 diff --git a/.github/workflows/CI-test.yml b/.github/workflows/CI-test.yml deleted file mode 100644 index 8b13789..0000000 --- a/.github/workflows/CI-test.yml +++ /dev/null @@ -1 +0,0 @@ - From 02f0c0cf3cf8cbbcd017261fc913eb47e789e7d8 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 11:00:09 +0200 Subject: [PATCH 04/39] Rename CI-test- release.yml to CI-test-release.yml --- .github/workflows/{CI-test- release.yml => CI-test-release.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{CI-test- release.yml => CI-test-release.yml} (100%) diff --git a/.github/workflows/CI-test- release.yml b/.github/workflows/CI-test-release.yml similarity index 100% rename from .github/workflows/CI-test- release.yml rename to .github/workflows/CI-test-release.yml From fd93fc5341cfd6afd3a7fa79141413de0bbe3b57 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 11:11:43 +0200 Subject: [PATCH 05/39] Update CI-test-release.yml --- .github/workflows/CI-test-release.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI-test-release.yml b/.github/workflows/CI-test-release.yml index 0e5dcf2..c96a10d 100644 --- a/.github/workflows/CI-test-release.yml +++ b/.github/workflows/CI-test-release.yml @@ -1,9 +1,20 @@ -name: CI Test release +name: CI Test Release on: [workflow_dispatch] permissions: write-all jobs: - create-release: + ci-test-release: runs-on: macos-12 + + steps: + - name: Plug Tap + run: brew tap ton-blockchain/ton + + - name: Install ton + run: brew install ton + + - name: Test Audit + run: brew audit --new-formula ton tests + From 000ea1b70c50ba868591ae6e308b123a974c70ec Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 11:14:39 +0200 Subject: [PATCH 06/39] Update CI-test-release.yml --- .github/workflows/CI-test-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI-test-release.yml b/.github/workflows/CI-test-release.yml index c96a10d..ef01505 100644 --- a/.github/workflows/CI-test-release.yml +++ b/.github/workflows/CI-test-release.yml @@ -16,5 +16,5 @@ jobs: run: brew install ton - name: Test Audit - run: brew audit --new-formula ton tests + run: brew audit --new-formula ton From 1c09584ef2f04139c5d2aa5d69c7280e8ed852fa Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 11:40:12 +0200 Subject: [PATCH 07/39] Update CI-test-release.yml --- .github/workflows/CI-test-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI-test-release.yml b/.github/workflows/CI-test-release.yml index ef01505..066eeb2 100644 --- a/.github/workflows/CI-test-release.yml +++ b/.github/workflows/CI-test-release.yml @@ -16,5 +16,5 @@ jobs: run: brew install ton - name: Test Audit - run: brew audit --new-formula ton + run: brew audit --strict ton From e79b41cf8e935826cdfc1f6382f543c18068afd5 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 11:41:56 +0200 Subject: [PATCH 08/39] Update and rename CI-test-release.yml to Audit-test-release.yml --- .../{CI-test-release.yml => Audit-test-release.yml} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename .github/workflows/{CI-test-release.yml => Audit-test-release.yml} (61%) diff --git a/.github/workflows/CI-test-release.yml b/.github/workflows/Audit-test-release.yml similarity index 61% rename from .github/workflows/CI-test-release.yml rename to .github/workflows/Audit-test-release.yml index 066eeb2..b75a40d 100644 --- a/.github/workflows/CI-test-release.yml +++ b/.github/workflows/Audit-test-release.yml @@ -1,20 +1,20 @@ -name: CI Test Release +name: Audit Test Release on: [workflow_dispatch] permissions: write-all jobs: - ci-test-release: + audit-test-release: runs-on: macos-12 steps: - - name: Plug Tap + - name: Ton Plug Tap run: brew tap ton-blockchain/ton - - name: Install ton + - name: Ton Install run: brew install ton - - name: Test Audit + - name: Ton Test Audit run: brew audit --strict ton From 2a7bad923f7c0d5fbe5bc55d5e62fe07ba770e74 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 11:54:31 +0200 Subject: [PATCH 09/39] Update ton.rb --- ton.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ton.rb b/ton.rb index 0afb4a4..1a4f4c9 100644 --- a/ton.rb +++ b/ton.rb @@ -1,13 +1,13 @@ class Ton < Formula - desc "A collection of The Open Network core software and utilities." - homepage "http://github.com/ton-blockchain/ton" + desc "TON, The Open Network core software collection and utilities. A decentralized and open internet, created by the community using a technology designed by Telegram." + homepage "https://github.com/ton-blockchain/ton" if Hardware::CPU.arm? url "https://github.com/ton-blockchain/homebrew-ton/releases/latest/download/ton-brew-arm64.tar.gz" - sha256 "78ac5cf06fe4059f91f6db3706bd254fed5d26090901fc844e993cdb3ee6e883" #arm64 + sha256 "78ac5cf06fe4059f91f6db3706bd254fed5d26090901fc844e993cdb3ee6e883" # arm64 else url "https://github.com/ton-blockchain/homebrew-ton/releases/latest/download/ton-brew-x86-64.tar.gz" - sha256 "b435ea609f93e566c3590d6247b446e29aa3953a18394517289b87ce8115a75b" #amd64 + sha256 "b435ea609f93e566c3590d6247b446e29aa3953a18394517289b87ce8115a75b" # amd64 end license "LGPL-2.0-only" From 91adb38ec5cbbc1057b2391e3ab86cca385d34a3 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 18:58:26 +0200 Subject: [PATCH 10/39] Update create-release.yml --- .github/workflows/create-release.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 500a308..1bd5de2 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -57,10 +57,23 @@ jobs: - name: Create release run: | LATEST_TAG=$(git ls-remote --tags https://github.com/ton-blockchain/ton/ | tail -1 | sed -n -e 's/^.*tags\///p') + LATEST_TAG=$(LATEST_TAG)_chbinousamy echo "LATEST_TAG $LATEST_TAG" git add ton.rb git commit -m "create release" || true - git push + git push gh release create --notes "" $LATEST_TAG ./*.tar.gz env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +# - name: Create release +# run: | +# LATEST_TAG=$(git ls-remote --tags https://github.com/ton-blockchain/ton/ | tail -1 | sed -n -e 's/^.*tags\///p') +# echo "LATEST_TAG $LATEST_TAG" +# git add ton.rb +# git commit -m "create release" || true +# git push +# gh release create --notes "" $LATEST_TAG ./*.tar.gz +# env: +# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + From 89e3fb9c39649145deda938832d6b20af98b49ab Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 19:00:40 +0200 Subject: [PATCH 11/39] Update create-release.yml --- .github/workflows/create-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 1bd5de2..5b59da9 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -57,7 +57,7 @@ jobs: - name: Create release run: | LATEST_TAG=$(git ls-remote --tags https://github.com/ton-blockchain/ton/ | tail -1 | sed -n -e 's/^.*tags\///p') - LATEST_TAG=$(LATEST_TAG)_chbinousamy + LATEST_TAG+=_chbinousamy echo "LATEST_TAG $LATEST_TAG" git add ton.rb git commit -m "create release" || true From a6661d65e01d10cdad7e5afcc36302bcff655a65 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 19:15:05 +0200 Subject: [PATCH 12/39] Update Audit-test-release.yml --- .github/workflows/Audit-test-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Audit-test-release.yml b/.github/workflows/Audit-test-release.yml index b75a40d..28957f3 100644 --- a/.github/workflows/Audit-test-release.yml +++ b/.github/workflows/Audit-test-release.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Ton Plug Tap - run: brew tap ton-blockchain/ton + run: brew tap chbinousamy/ton-blockchain/ton - name: Ton Install run: brew install ton From 7234fca9bf642bdf060a8bea2d5b682e163d5a5c Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 19:16:44 +0200 Subject: [PATCH 13/39] Update Audit-test-release.yml --- .github/workflows/Audit-test-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Audit-test-release.yml b/.github/workflows/Audit-test-release.yml index 28957f3..ea077de 100644 --- a/.github/workflows/Audit-test-release.yml +++ b/.github/workflows/Audit-test-release.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Ton Plug Tap - run: brew tap chbinousamy/ton-blockchain/ton + run: brew tap chbinousamy/homebrew-ton - name: Ton Install run: brew install ton From 9cb00bef5a09e5033e917a5990010825f5569873 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 19:36:58 +0200 Subject: [PATCH 14/39] Update ton.rb --- ton.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ton.rb b/ton.rb index 1a4f4c9..df8ec3f 100644 --- a/ton.rb +++ b/ton.rb @@ -7,7 +7,8 @@ class Ton < Formula sha256 "78ac5cf06fe4059f91f6db3706bd254fed5d26090901fc844e993cdb3ee6e883" # arm64 else url "https://github.com/ton-blockchain/homebrew-ton/releases/latest/download/ton-brew-x86-64.tar.gz" - sha256 "b435ea609f93e566c3590d6247b446e29aa3953a18394517289b87ce8115a75b" # amd64 + sha256 "f75d041416f2b569ee2954a1dd267a03dedab28404ffb9e2b584ecedc3715f28" # amd64 + # sha256 "b435ea609f93e566c3590d6247b446e29aa3953a18394517289b87ce8115a75b" # amd64 end license "LGPL-2.0-only" From 5b31c169e3b6c9a912c32cfbc57f89f00e95bb9c Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 19:45:01 +0200 Subject: [PATCH 15/39] Update ton.rb --- ton.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ton.rb b/ton.rb index df8ec3f..36d6319 100644 --- a/ton.rb +++ b/ton.rb @@ -1,5 +1,5 @@ class Ton < Formula - desc "TON, The Open Network core software collection and utilities. A decentralized and open internet, created by the community using a technology designed by Telegram." + desc "The Open Network core software collection and utilities" homepage "https://github.com/ton-blockchain/ton" if Hardware::CPU.arm? From 1c1179b535c3008b87a5919e164f6dba88b21a16 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 19:48:16 +0200 Subject: [PATCH 16/39] Update create-release.yml --- .github/workflows/create-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 5b59da9..4ed6b60 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -57,7 +57,7 @@ jobs: - name: Create release run: | LATEST_TAG=$(git ls-remote --tags https://github.com/ton-blockchain/ton/ | tail -1 | sed -n -e 's/^.*tags\///p') - LATEST_TAG+=_chbinousamy + LATEST_TAG+=.GITHUB_SHA echo "LATEST_TAG $LATEST_TAG" git add ton.rb git commit -m "create release" || true From 183bbde3f63a605600ea713bd44f8e4181052339 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 20:29:28 +0200 Subject: [PATCH 17/39] Update ton.rb --- ton.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ton.rb b/ton.rb index 36d6319..63e48de 100644 --- a/ton.rb +++ b/ton.rb @@ -1,5 +1,5 @@ class Ton < Formula - desc "The Open Network core software collection and utilities" + desc "TND, TON New DeFi, The Open Network core software collection and utilities" homepage "https://github.com/ton-blockchain/ton" if Hardware::CPU.arm? From 6c386dc02aebf2ff89f25c275ad56bc6fe7ca32d Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 22:42:41 +0200 Subject: [PATCH 18/39] Update ton.rb --- ton.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ton.rb b/ton.rb index 63e48de..c3a8af0 100644 --- a/ton.rb +++ b/ton.rb @@ -1,5 +1,5 @@ class Ton < Formula - desc "TND, TON New DeFi, The Open Network core software collection and utilities" + desc "Software collection and utilities for TON New DeFi, The Open Network" homepage "https://github.com/ton-blockchain/ton" if Hardware::CPU.arm? @@ -17,4 +17,8 @@ def install bin.install Dir["bin/*"] lib.install Dir["lib/*"] end + + test do + system "true" + end end From 905d725da59f4c23d0942c48c398eea8b291c21c Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 22:44:39 +0200 Subject: [PATCH 19/39] Update create-release.yml --- .github/workflows/create-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 4ed6b60..fa74065 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -57,7 +57,7 @@ jobs: - name: Create release run: | LATEST_TAG=$(git ls-remote --tags https://github.com/ton-blockchain/ton/ | tail -1 | sed -n -e 's/^.*tags\///p') - LATEST_TAG+=.GITHUB_SHA + LATEST_TAG+=.$GITHUB_SHA echo "LATEST_TAG $LATEST_TAG" git add ton.rb git commit -m "create release" || true From 9d3c675d9e4a5af6d1163d2d539e5fa9fe86b375 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 23:37:10 +0200 Subject: [PATCH 20/39] Update Audit-test-release.yml --- .github/workflows/Audit-test-release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Audit-test-release.yml b/.github/workflows/Audit-test-release.yml index ea077de..7550608 100644 --- a/.github/workflows/Audit-test-release.yml +++ b/.github/workflows/Audit-test-release.yml @@ -15,6 +15,8 @@ jobs: - name: Ton Install run: brew install ton - - name: Ton Test Audit + - name: Ton Audit run: brew audit --strict ton - + + - name: Ton Test + run: brew test ton From bc10d710711928b90e6741a114ac3241bc645f6e Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 23:37:35 +0200 Subject: [PATCH 21/39] Rename Audit-test-release.yml to CI.yml --- .github/workflows/{Audit-test-release.yml => CI.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{Audit-test-release.yml => CI.yml} (100%) diff --git a/.github/workflows/Audit-test-release.yml b/.github/workflows/CI.yml similarity index 100% rename from .github/workflows/Audit-test-release.yml rename to .github/workflows/CI.yml From e80b930a07da8fe43238a7f3ab3d98e32cc8b8cc Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 23:38:05 +0200 Subject: [PATCH 22/39] Update CI.yml --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7550608..f410a02 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -1,11 +1,11 @@ -name: Audit Test Release +name: CI Test Release on: [workflow_dispatch] permissions: write-all jobs: - audit-test-release: + ci-test-release: runs-on: macos-12 steps: From 15aba76152e00b5746a1364359af8a62530e29c2 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 23:51:34 +0200 Subject: [PATCH 23/39] Update create-release.yml --- .github/workflows/create-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index fa74065..3cb8e59 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -6,7 +6,7 @@ permissions: write-all jobs: create-release: - runs-on: macos-12 + runs-on: [macos-12, ARM64] steps: - uses: actions/checkout@v3 From f48b9de4141ba48a60a91a72f14670c25a42bf82 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Mon, 14 Aug 2023 23:51:59 +0200 Subject: [PATCH 24/39] Update CI.yml --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f410a02..fd631b1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -6,7 +6,7 @@ permissions: write-all jobs: ci-test-release: - runs-on: macos-12 + runs-on: [macos-12, ARM64] steps: - name: Ton Plug Tap From acd1274caba4dbe49cb3b23037735eab6c989b2f Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Tue, 15 Aug 2023 10:28:11 +0200 Subject: [PATCH 25/39] Update create-release.yml --- .github/workflows/create-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 3cb8e59..e461963 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -6,7 +6,7 @@ permissions: write-all jobs: create-release: - runs-on: [macos-12, ARM64] + runs-on: [macos-12] # , ARM64] steps: - uses: actions/checkout@v3 From 80d4002448fb07fc192cb096d162af3e22da3af4 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Tue, 15 Aug 2023 10:35:00 +0200 Subject: [PATCH 26/39] Rename CI.yml to CI-test.yml --- .github/workflows/{CI.yml => CI-test.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{CI.yml => CI-test.yml} (100%) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI-test.yml similarity index 100% rename from .github/workflows/CI.yml rename to .github/workflows/CI-test.yml From a09365ebbfbd71e96ca64f2b97e0ae0e5bbdec7c Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Tue, 15 Aug 2023 10:35:22 +0200 Subject: [PATCH 27/39] Update CI-test.yml --- .github/workflows/CI-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI-test.yml b/.github/workflows/CI-test.yml index fd631b1..b9452cb 100644 --- a/.github/workflows/CI-test.yml +++ b/.github/workflows/CI-test.yml @@ -6,7 +6,7 @@ permissions: write-all jobs: ci-test-release: - runs-on: [macos-12, ARM64] + runs-on: [macos-12] # , ARM64] steps: - name: Ton Plug Tap From b17e8bb84e42260c7c7a6fb4cc14f6d527c83b97 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Tue, 15 Aug 2023 10:59:56 +0200 Subject: [PATCH 28/39] Update CI-test.yml --- .github/workflows/CI-test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI-test.yml b/.github/workflows/CI-test.yml index b9452cb..9f3b484 100644 --- a/.github/workflows/CI-test.yml +++ b/.github/workflows/CI-test.yml @@ -1,6 +1,10 @@ name: CI Test Release -on: [workflow_dispatch] +on: + workflow_dispatch: + push: + tags: + - 'v2023.*' permissions: write-all From fac5a70b9a34299620e2b877738d61f172f553f5 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Tue, 15 Aug 2023 11:07:41 +0200 Subject: [PATCH 29/39] Update CI-test.yml --- .github/workflows/CI-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI-test.yml b/.github/workflows/CI-test.yml index 9f3b484..b5e8112 100644 --- a/.github/workflows/CI-test.yml +++ b/.github/workflows/CI-test.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: push: tags: - - 'v2023.*' + - 'v2023.*.*' permissions: write-all From 3d5c0632075671b94b704a918b5ac8a6a57b887e Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Tue, 15 Aug 2023 22:03:38 +0200 Subject: [PATCH 30/39] Update ton.rb --- ton.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ton.rb b/ton.rb index c3a8af0..afdc068 100644 --- a/ton.rb +++ b/ton.rb @@ -1,5 +1,5 @@ class Ton < Formula - desc "Software collection and utilities for TON New DeFi, The Open Network" + desc "Software collection and utilities for TON Next DApp, The Open Network" homepage "https://github.com/ton-blockchain/ton" if Hardware::CPU.arm? From 00fa679e9b5daa8857c10c63c170d00eeb250881 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Tue, 15 Aug 2023 23:03:56 +0200 Subject: [PATCH 31/39] Update ton.rb --- ton.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ton.rb b/ton.rb index afdc068..03f70f5 100644 --- a/ton.rb +++ b/ton.rb @@ -1,5 +1,5 @@ class Ton < Formula - desc "Software collection and utilities for TON Next DApp, The Open Network" + desc "Software collection and utilities for TON Next DeFi, The Open Network" homepage "https://github.com/ton-blockchain/ton" if Hardware::CPU.arm? From 7dda20992123e7a1e712f04bcd13ed029f6f77af Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Wed, 16 Aug 2023 00:07:29 +0200 Subject: [PATCH 32/39] Update and rename CI-test.yml to CI-MacOSX-test.yml --- .github/workflows/{CI-test.yml => CI-MacOSX-test.yml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{CI-test.yml => CI-MacOSX-test.yml} (93%) diff --git a/.github/workflows/CI-test.yml b/.github/workflows/CI-MacOSX-test.yml similarity index 93% rename from .github/workflows/CI-test.yml rename to .github/workflows/CI-MacOSX-test.yml index b5e8112..203f52b 100644 --- a/.github/workflows/CI-test.yml +++ b/.github/workflows/CI-MacOSX-test.yml @@ -1,4 +1,4 @@ -name: CI Test Release +name: CI MacOSX Test Release on: workflow_dispatch: From cf6b679fe03374d4c12f88082b3e567e5da96b5f Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Wed, 16 Aug 2023 00:09:39 +0200 Subject: [PATCH 33/39] Create CI-Ubuntu-test.yml --- .github/workflows/CI-Ubuntu-test.yml | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/CI-Ubuntu-test.yml diff --git a/.github/workflows/CI-Ubuntu-test.yml b/.github/workflows/CI-Ubuntu-test.yml new file mode 100644 index 0000000..a4d0921 --- /dev/null +++ b/.github/workflows/CI-Ubuntu-test.yml @@ -0,0 +1,31 @@ +name: CI MacOSX Test Release + +on: + workflow_dispatch: + push: + tags: + - 'v2023.*.*' + +permissions: write-all + +jobs: + ci-test-release: + runs-on: [ubuntu-latest] # , ARM64] + + steps: + - name: Install homebrew + run: | + /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" + echo "/home/linuxbrew/.linuxbrew/bin" >> $GITHUB_PATH + + - name: Ton Plug Tap + run: brew tap chbinousamy/homebrew-ton + + - name: Ton Install + run: brew install ton + + - name: Ton Audit + run: brew audit --strict ton + + - name: Ton Test + run: brew test ton From 7b8ac1371732e869f2c380622ba68f131325c6d4 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Wed, 16 Aug 2023 00:10:32 +0200 Subject: [PATCH 34/39] Update and rename CI-Ubuntu-test.yml to Ubuntu-CI-test.yml --- .github/workflows/{CI-Ubuntu-test.yml => Ubuntu-CI-test.yml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{CI-Ubuntu-test.yml => Ubuntu-CI-test.yml} (95%) diff --git a/.github/workflows/CI-Ubuntu-test.yml b/.github/workflows/Ubuntu-CI-test.yml similarity index 95% rename from .github/workflows/CI-Ubuntu-test.yml rename to .github/workflows/Ubuntu-CI-test.yml index a4d0921..823da3b 100644 --- a/.github/workflows/CI-Ubuntu-test.yml +++ b/.github/workflows/Ubuntu-CI-test.yml @@ -1,4 +1,4 @@ -name: CI MacOSX Test Release +name: Ubuntu CI Test Release on: workflow_dispatch: From 8561d2f1ba449f822f9ad6503b93aac4d0e248be Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Wed, 16 Aug 2023 00:11:01 +0200 Subject: [PATCH 35/39] Update and rename CI-MacOSX-test.yml to MacOSX-CI-test.yml --- .github/workflows/{CI-MacOSX-test.yml => MacOSX-CI-test.yml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{CI-MacOSX-test.yml => MacOSX-CI-test.yml} (93%) diff --git a/.github/workflows/CI-MacOSX-test.yml b/.github/workflows/MacOSX-CI-test.yml similarity index 93% rename from .github/workflows/CI-MacOSX-test.yml rename to .github/workflows/MacOSX-CI-test.yml index 203f52b..3cc55cf 100644 --- a/.github/workflows/CI-MacOSX-test.yml +++ b/.github/workflows/MacOSX-CI-test.yml @@ -1,4 +1,4 @@ -name: CI MacOSX Test Release +name: MacOSX CI Test Release on: workflow_dispatch: From 53ffaaeab942acefd0f8f67c209525c6da3b291e Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Wed, 16 Aug 2023 00:30:43 +0200 Subject: [PATCH 36/39] Update Ubuntu-CI-test.yml --- .github/workflows/Ubuntu-CI-test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Ubuntu-CI-test.yml b/.github/workflows/Ubuntu-CI-test.yml index 823da3b..e91e791 100644 --- a/.github/workflows/Ubuntu-CI-test.yml +++ b/.github/workflows/Ubuntu-CI-test.yml @@ -19,7 +19,9 @@ jobs: echo "/home/linuxbrew/.linuxbrew/bin" >> $GITHUB_PATH - name: Ton Plug Tap - run: brew tap chbinousamy/homebrew-ton + run: | + brew tap chbinousamy/homebrew-ton + brew update - name: Ton Install run: brew install ton From 4c2dbb7f4ce128de47ce0ce5e4247c2c310399e2 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Wed, 16 Aug 2023 20:53:50 +0200 Subject: [PATCH 37/39] Update ton.rb --- ton.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ton.rb b/ton.rb index 03f70f5..c3a8af0 100644 --- a/ton.rb +++ b/ton.rb @@ -1,5 +1,5 @@ class Ton < Formula - desc "Software collection and utilities for TON Next DeFi, The Open Network" + desc "Software collection and utilities for TON New DeFi, The Open Network" homepage "https://github.com/ton-blockchain/ton" if Hardware::CPU.arm? From fb5b63fd26821a61da3622558b9f2bf74d859f19 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Fri, 18 Aug 2023 10:54:05 +0200 Subject: [PATCH 38/39] Update ton.rb --- ton.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ton.rb b/ton.rb index c3a8af0..8cb87a8 100644 --- a/ton.rb +++ b/ton.rb @@ -7,8 +7,7 @@ class Ton < Formula sha256 "78ac5cf06fe4059f91f6db3706bd254fed5d26090901fc844e993cdb3ee6e883" # arm64 else url "https://github.com/ton-blockchain/homebrew-ton/releases/latest/download/ton-brew-x86-64.tar.gz" - sha256 "f75d041416f2b569ee2954a1dd267a03dedab28404ffb9e2b584ecedc3715f28" # amd64 - # sha256 "b435ea609f93e566c3590d6247b446e29aa3953a18394517289b87ce8115a75b" # amd64 + sha256 "b435ea609f93e566c3590d6247b446e29aa3953a18394517289b87ce8115a75b" # amd64 end license "LGPL-2.0-only" From 200469d0699df7eda54d197fa7e01af4230e4380 Mon Sep 17 00:00:00 2001 From: Samy CHBINOU <120525869+chbinousamy@users.noreply.github.com> Date: Fri, 18 Aug 2023 10:58:10 +0200 Subject: [PATCH 39/39] Update create-release.yml --- .github/workflows/create-release.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index e461963..4fd7136 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -57,23 +57,11 @@ jobs: - name: Create release run: | LATEST_TAG=$(git ls-remote --tags https://github.com/ton-blockchain/ton/ | tail -1 | sed -n -e 's/^.*tags\///p') - LATEST_TAG+=.$GITHUB_SHA echo "LATEST_TAG $LATEST_TAG" git add ton.rb git commit -m "create release" || true - git push + git push gh release create --notes "" $LATEST_TAG ./*.tar.gz env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -# - name: Create release -# run: | -# LATEST_TAG=$(git ls-remote --tags https://github.com/ton-blockchain/ton/ | tail -1 | sed -n -e 's/^.*tags\///p') -# echo "LATEST_TAG $LATEST_TAG" -# git add ton.rb -# git commit -m "create release" || true -# git push -# gh release create --notes "" $LATEST_TAG ./*.tar.gz -# env: -# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -