From 9cf4930b9838adcb7d25928ace63d1c1e93e0496 Mon Sep 17 00:00:00 2001 From: Vincent Gao Date: Mon, 22 Jul 2024 23:38:04 +1000 Subject: [PATCH 1/2] migrate PHPUnit tests from CI to github actions --- .github/workflows/tide_build.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tide_build.yml b/.github/workflows/tide_build.yml index 4238a267..08a95eda 100644 --- a/.github/workflows/tide_build.yml +++ b/.github/workflows/tide_build.yml @@ -1,6 +1,6 @@ name: tide_build -on: +on: workflow_call: inputs: module_build: @@ -61,4 +61,12 @@ jobs: if: always() with: name: behat-results - path: /tmp/artifacts \ No newline at end of file + path: /tmp/artifacts + - name: Run PHPUnit Tests + if: always() + run: | + /app/.circleci/phpunit_tests.sh + - name: Run PHPUnit Tests - code coverage + if: always() + run: | + /app/.circleci/code_coverage.sh From 39b1c3d0ac215207b7a23577580f397f84a1a911 Mon Sep 17 00:00:00 2001 From: Guy Owen Date: Tue, 23 Jul 2024 15:49:43 +1000 Subject: [PATCH 2/2] [SDPAP-9391] Bump ci-builder image tag --- .github/workflows/tide_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tide_build.yml b/.github/workflows/tide_build.yml index 08a95eda..1ee3b055 100644 --- a/.github/workflows/tide_build.yml +++ b/.github/workflows/tide_build.yml @@ -22,7 +22,7 @@ jobs: name: tide_build runs-on: ${{ inputs.runner }} container: - image: ghcr.io/dpc-sdp/bay/ci-builder:5.x + image: ghcr.io/dpc-sdp/bay/ci-builder:6.x steps: - name: Checkout code uses: actions/checkout@v4