From f21e750967a57457cadd9829ac0128719beb6adc Mon Sep 17 00:00:00 2001 From: svk Date: Sun, 30 Jul 2023 11:33:52 +0300 Subject: [PATCH 1/8] Gitea actions add --- .gitea/workflows/build.yml | 13 +++++++++++++ .woodpecker/.build.yml | 6 ------ projman.tcl | 2 +- 3 files changed, 14 insertions(+), 7 deletions(-) create mode 100644 .gitea/workflows/build.yml delete mode 100644 .woodpecker/.build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..ecb49a8 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,13 @@ +name: Projman build the packages +run-name: ${{ gitea.actor }} build projman packages +on: [push] + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + build: + image: svk28/tcltk-build-debian:latest + commands: + - cd debian + - ./build-deb-projman.sh diff --git a/.woodpecker/.build.yml b/.woodpecker/.build.yml deleted file mode 100644 index f4a8a44..0000000 --- a/.woodpecker/.build.yml +++ /dev/null @@ -1,6 +0,0 @@ -pipeline: - build: - image: svk28/tcltk-build-debian:latest - commands: - - cd debian - - ./build-deb-projman.sh diff --git a/projman.tcl b/projman.tcl index 4b17874..357cc05 100755 --- a/projman.tcl +++ b/projman.tcl @@ -10,7 +10,7 @@ exec wish "$0" -- "$@" ###################################################### # Version: 2.0.0 # Release: alpha -# Build: 27072023125916 +# Build: 30072023112719 ###################################################### # определим текущую версию, релиз и т.д. From 791a4c59a3d6fb269049956f86198448cbfb5062 Mon Sep 17 00:00:00 2001 From: svk Date: Sun, 30 Jul 2023 11:44:41 +0300 Subject: [PATCH 2/8] Test gitea actions --- .gitea/workflows/build.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index ecb49a8..3b58f08 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -4,10 +4,7 @@ on: [push] jobs: Explore-Gitea-Actions: - runs-on: ubuntu-latest + runs-on: tcl-tk-builder steps: - build: - image: svk28/tcltk-build-debian:latest - commands: - - cd debian - - ./build-deb-projman.sh + - run: cd debian + - run: ./build-deb-projman.sh From bc56f02a358eba58e21cccf2e0cf5ff723067293 Mon Sep 17 00:00:00 2001 From: svk Date: Sun, 30 Jul 2023 11:49:45 +0300 Subject: [PATCH 3/8] TEst --- .gitea/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 3b58f08..251cf82 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -4,7 +4,7 @@ on: [push] jobs: Explore-Gitea-Actions: - runs-on: tcl-tk-builder + runs-on: tcl-tk-builder:docker://svk28/tcltk-build-debian:latest steps: - run: cd debian - run: ./build-deb-projman.sh From d04d4195481f3b0ee405c30b5fae1c9dd8c52bf1 Mon Sep 17 00:00:00 2001 From: svk Date: Sun, 30 Jul 2023 12:01:24 +0300 Subject: [PATCH 4/8] Fix --- .gitea/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 251cf82..247cbcf 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -3,8 +3,11 @@ run-name: ${{ gitea.actor }} build projman packages on: [push] jobs: - Explore-Gitea-Actions: + Projman-Build: runs-on: tcl-tk-builder:docker://svk28/tcltk-build-debian:latest steps: + - name: Checkout repository + uses: actions/checkout@v3 + - run: git checkout HEAD^ - run: cd debian - run: ./build-deb-projman.sh From 55fe5c3023f95a2a0229511d74539f1d7e223796 Mon Sep 17 00:00:00 2001 From: svk Date: Sun, 30 Jul 2023 12:11:49 +0300 Subject: [PATCH 5/8] Fix --- .gitea/workflows/build.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 247cbcf..af47aba 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -8,6 +8,5 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - - run: git checkout HEAD^ - run: cd debian - run: ./build-deb-projman.sh From 61f2bca699ce31159c93cf0d07d29aeae1fc964e Mon Sep 17 00:00:00 2001 From: svk Date: Mon, 30 Oct 2023 09:46:02 +0300 Subject: [PATCH 6/8] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20.gitea/workflows/build.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TEst actions --- .gitea/workflows/build.yml | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index af47aba..d67ac59 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -1,12 +1,19 @@ -name: Projman build the packages -run-name: ${{ gitea.actor }} build projman packages +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 on: [push] jobs: - Projman-Build: - runs-on: tcl-tk-builder:docker://svk28/tcltk-build-debian:latest + Explore-Gitea-Actions: + runs-on: ubuntu-latest steps: - - name: Checkout repository + - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" + - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Check out repository code uses: actions/checkout@v3 - - run: cd debian - - run: ./build-deb-projman.sh + - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: List files in the repository + run: | + ls ${{ gitea.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file From 8bd48159d6b342f2fe6e24c65765509926ddb45e Mon Sep 17 00:00:00 2001 From: svk Date: Mon, 30 Oct 2023 09:55:41 +0300 Subject: [PATCH 7/8] revert 61f2bca699ce31159c93cf0d07d29aeae1fc964e MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit revert Обновить .gitea/workflows/build.yml TEst actions --- .gitea/workflows/build.yml | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index d67ac59..af47aba 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -1,19 +1,12 @@ -name: Gitea Actions Demo -run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +name: Projman build the packages +run-name: ${{ gitea.actor }} build projman packages on: [push] jobs: - Explore-Gitea-Actions: - runs-on: ubuntu-latest + Projman-Build: + runs-on: tcl-tk-builder:docker://svk28/tcltk-build-debian:latest steps: - - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - - name: Check out repository code + - name: Checkout repository uses: actions/checkout@v3 - - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - - run: echo "🖥️ The workflow is now ready to test your code on the runner." - - name: List files in the repository - run: | - ls ${{ gitea.workspace }} - - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file + - run: cd debian + - run: ./build-deb-projman.sh From 72abc2b84fd6c3356483d080873246f025340b20 Mon Sep 17 00:00:00 2001 From: svk Date: Mon, 30 Oct 2023 10:44:37 +0300 Subject: [PATCH 8/8] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20.gitea/workflows/build.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index af47aba..823dc33 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -7,6 +7,6 @@ jobs: runs-on: tcl-tk-builder:docker://svk28/tcltk-build-debian:latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - run: cd debian - run: ./build-deb-projman.sh