diff --git a/.gitea/workflows/api-endpoint-tests.yml b/.gitea/workflows/api-endpoint-tests.yml index 7e8e962f..f35eff01 100644 --- a/.gitea/workflows/api-endpoint-tests.yml +++ b/.gitea/workflows/api-endpoint-tests.yml @@ -31,6 +31,11 @@ jobs: cd "$WORKSPACE" git clone --depth 1 http://gitea.bubuit.net:3000/oib/aitbc.git repo + - name: Initialize job logging + run: | + cd /var/lib/aitbc-workspaces/api-tests/repo + bash scripts/ci/setup-job-logging.sh + - name: Setup test environment run: | cd /var/lib/aitbc-workspaces/api-tests/repo diff --git a/.gitea/workflows/cli-level1-tests.yml b/.gitea/workflows/cli-level1-tests.yml index 8e5b7d90..e912af0d 100644 --- a/.gitea/workflows/cli-level1-tests.yml +++ b/.gitea/workflows/cli-level1-tests.yml @@ -29,6 +29,11 @@ jobs: cd "$WORKSPACE" git clone --depth 1 http://gitea.bubuit.net:3000/oib/aitbc.git repo + - name: Initialize job logging + run: | + cd /var/lib/aitbc-workspaces/cli-tests/repo + bash scripts/ci/setup-job-logging.sh + - name: Setup Python environment run: | cd /var/lib/aitbc-workspaces/cli-tests/repo diff --git a/.gitea/workflows/docs-validation.yml b/.gitea/workflows/docs-validation.yml index a95579ae..a9aef6ef 100644 --- a/.gitea/workflows/docs-validation.yml +++ b/.gitea/workflows/docs-validation.yml @@ -33,6 +33,11 @@ jobs: cd "$WORKSPACE" git clone --depth 1 http://gitea.bubuit.net:3000/oib/aitbc.git repo + - name: Initialize job logging + run: | + cd /var/lib/aitbc-workspaces/docs-validation/repo + bash scripts/ci/setup-job-logging.sh + - name: Install tools run: | npm install -g markdownlint-cli 2>/dev/null || echo "⚠️ markdownlint not installed" @@ -115,6 +120,11 @@ jobs: cd "$WORKSPACE" git clone --depth 1 http://gitea.bubuit.net:3000/oib/aitbc.git repo + - name: Initialize job logging + run: | + cd /var/lib/aitbc-workspaces/docs-validation-policies/repo + bash scripts/ci/setup-job-logging.sh + - name: Install markdownlint run: | npm install -g markdownlint-cli diff --git a/.gitea/workflows/integration-tests.yml b/.gitea/workflows/integration-tests.yml index d989af03..17933a80 100644 --- a/.gitea/workflows/integration-tests.yml +++ b/.gitea/workflows/integration-tests.yml @@ -29,6 +29,11 @@ jobs: cd "$WORKSPACE" git clone --depth 1 http://gitea.bubuit.net:3000/oib/aitbc.git repo + - name: Initialize job logging + run: | + cd /var/lib/aitbc-workspaces/integration-tests/repo + bash scripts/ci/setup-job-logging.sh + - name: Sync systemd files if: github.event_name != 'pull_request' run: | diff --git a/.gitea/workflows/js-sdk-tests.yml b/.gitea/workflows/js-sdk-tests.yml index 4fad34dd..9b36291d 100644 --- a/.gitea/workflows/js-sdk-tests.yml +++ b/.gitea/workflows/js-sdk-tests.yml @@ -28,6 +28,11 @@ jobs: cd "$WORKSPACE" git clone --depth 1 http://gitea.bubuit.net:3000/oib/aitbc.git repo + - name: Initialize job logging + run: | + cd /var/lib/aitbc-workspaces/js-sdk-tests/repo + bash scripts/ci/setup-job-logging.sh + - name: Verify Node.js run: | echo "Node: $(node --version)" diff --git a/.gitea/workflows/package-tests.yml b/.gitea/workflows/package-tests.yml index b0ca6a36..2d7c8d50 100644 --- a/.gitea/workflows/package-tests.yml +++ b/.gitea/workflows/package-tests.yml @@ -42,6 +42,11 @@ jobs: cd "$WORKSPACE" git clone --depth 1 http://gitea.bubuit.net:3000/oib/aitbc.git repo + - name: Initialize job logging + run: | + cd "/var/lib/aitbc-workspaces/pkg-${{ matrix.package.name }}/repo" + bash scripts/ci/setup-job-logging.sh + - name: Setup and test package run: | WORKSPACE="/var/lib/aitbc-workspaces/pkg-${{ matrix.package.name }}" @@ -134,6 +139,11 @@ jobs: cd "$WORKSPACE" git clone --depth 1 http://gitea.bubuit.net:3000/oib/aitbc.git repo + - name: Initialize job logging + run: | + cd "/var/lib/aitbc-workspaces/jspkg-${{ matrix.package.name }}/repo" + bash scripts/ci/setup-job-logging.sh + - name: Setup and test package run: | WORKSPACE="/var/lib/aitbc-workspaces/jspkg-${{ matrix.package.name }}" diff --git a/.gitea/workflows/python-tests.yml b/.gitea/workflows/python-tests.yml index 54719450..1dd2b0fd 100644 --- a/.gitea/workflows/python-tests.yml +++ b/.gitea/workflows/python-tests.yml @@ -32,6 +32,11 @@ jobs: cd "$WORKSPACE" git clone --depth 1 http://gitea.bubuit.net:3000/oib/aitbc.git repo + - name: Initialize job logging + run: | + cd /var/lib/aitbc-workspaces/python-tests/repo + bash scripts/ci/setup-job-logging.sh + - name: Setup Python environment run: | cd /var/lib/aitbc-workspaces/python-tests/repo diff --git a/.gitea/workflows/rust-zk-tests.yml b/.gitea/workflows/rust-zk-tests.yml index 1a66cb24..a0b897e1 100644 --- a/.gitea/workflows/rust-zk-tests.yml +++ b/.gitea/workflows/rust-zk-tests.yml @@ -28,6 +28,11 @@ jobs: cd "$WORKSPACE" git clone --depth 1 http://gitea.bubuit.net:3000/oib/aitbc.git repo + - name: Initialize job logging + run: | + cd /var/lib/aitbc-workspaces/rust-zk-tests/repo + bash scripts/ci/setup-job-logging.sh + - name: Setup Rust environment run: | cd /var/lib/aitbc-workspaces/rust-zk-tests/repo diff --git a/.gitea/workflows/security-scanning.yml b/.gitea/workflows/security-scanning.yml index a0b99ed4..710ee8b5 100644 --- a/.gitea/workflows/security-scanning.yml +++ b/.gitea/workflows/security-scanning.yml @@ -35,6 +35,11 @@ jobs: git fetch --depth 2 origin "${{ github.ref }}" git checkout --detach FETCH_HEAD + - name: Initialize job logging + run: | + cd /var/lib/aitbc-workspaces/security-scan/repo + bash scripts/ci/setup-job-logging.sh + - name: Setup tools run: | cd /var/lib/aitbc-workspaces/security-scan/repo diff --git a/.gitea/workflows/smart-contract-tests.yml b/.gitea/workflows/smart-contract-tests.yml index 5c0b8a7b..861253f7 100644 --- a/.gitea/workflows/smart-contract-tests.yml +++ b/.gitea/workflows/smart-contract-tests.yml @@ -35,6 +35,11 @@ jobs: cd "$WORKSPACE" git clone --depth 1 http://gitea.bubuit.net:3000/oib/aitbc.git repo + - name: Initialize job logging + run: | + cd "/var/lib/aitbc-workspaces/solidity-${{ matrix.project.name }}/repo" + bash scripts/ci/setup-job-logging.sh + - name: Setup and test run: | WORKSPACE="/var/lib/aitbc-workspaces/solidity-${{ matrix.project.name }}" @@ -105,6 +110,11 @@ jobs: cd "$WORKSPACE" git clone --depth 1 http://gitea.bubuit.net:3000/oib/aitbc.git repo + - name: Initialize job logging + run: | + cd /var/lib/aitbc-workspaces/solidity-lint/repo + bash scripts/ci/setup-job-logging.sh + - name: Lint contracts run: | cd /var/lib/aitbc-workspaces/solidity-lint/repo