diff --git a/.gitea/workflows/TRIGGER.md b/.gitea/workflows/TRIGGER.md new file mode 100644 index 0000000..9d03ac5 --- /dev/null +++ b/.gitea/workflows/TRIGGER.md @@ -0,0 +1 @@ +# Runner diff --git a/.gitea/workflows/TRIGGER2.md b/.gitea/workflows/TRIGGER2.md new file mode 100644 index 0000000..6219c02 --- /dev/null +++ b/.gitea/workflows/TRIGGER2.md @@ -0,0 +1 @@ +# Test Sun Jun 28 00:38:10 UTC 2026 diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 27dd7f3..e9379ce 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -16,7 +16,13 @@ jobs: validate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout code + run: | + echo "PWD: $(pwd)" + echo "LS: $(ls -la)" + git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git /tmp/repo 2>&1 + cp -a /tmp/repo/. . 2>&1 + rm -rf /tmp/repo - name: Validate config schemas run: | @@ -50,8 +56,8 @@ jobs: runs-on: ubuntu-latest needs: [validate] steps: - - uses: actions/checkout@v4 - + - name: Checkout + run: git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Deploy to agents env: TAG: ${{ github.ref_name }} diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 3da6006..9031218 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -20,7 +20,8 @@ jobs: validate: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout + run: git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Python syntax run: | python3 -m py_compile plugins/platforms/zulip/adapter.py 2>/dev/null @@ -35,7 +36,8 @@ jobs: needs: [validate] environment: canary steps: - - uses: actions/checkout@v4 + - name: Checkout + run: git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Deploy to Tanko env: TAG: ${{ github.ref_name }} @@ -63,7 +65,8 @@ jobs: needs: [deploy-tanko] environment: production steps: - - uses: actions/checkout@v4 + - name: Checkout + run: git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Deploy to all Hermes agents env: TAG: ${{ github.ref_name }} @@ -93,7 +96,8 @@ jobs: needs: [validate] environment: agent-zero steps: - - uses: actions/checkout@v4 + - name: Checkout + run: git clone --depth 1 http://abiba-bot:mipjoq-tybbox-2ciHru@192.168.68.17:3000/SyslogSolution/zulip-platform-plugins.git . - name: Deploy to kagentz env: TAG: ${{ github.ref_name }} diff --git a/.gitea/workflows/minimal.yml b/.gitea/workflows/minimal.yml new file mode 100644 index 0000000..72d4476 --- /dev/null +++ b/.gitea/workflows/minimal.yml @@ -0,0 +1,9 @@ +name: Minimal Test +on: push +jobs: + test: + runs-on: ubuntu-latest + steps: + - run: echo "HELLO_WORLD" + - run: pwd + - run: ls -la diff --git a/test-workflow/simple-test.yml b/test-workflow/simple-test.yml new file mode 100644 index 0000000..d0ef4e6 --- /dev/null +++ b/test-workflow/simple-test.yml @@ -0,0 +1,10 @@ +name: Simple Test +on: pull_request +jobs: + test: + runs-on: ubuntu-latest + steps: + - run: echo "Hello from runner! OS: $(uname -a)" + - run: python3 --version + - run: git --version + - run: echo "Runner works!"