From 062042bb4cfae7b2b5021c19141f1a21a2836705 Mon Sep 17 00:00:00 2001 From: eanzhao Date: Fri, 19 Jul 2024 17:13:14 +0800 Subject: [PATCH] Refactor test.yml --- .github/workflows/publish-test-summary.yml | 29 -------- .github/workflows/test.yml | 78 ++++++++++++++++------ 2 files changed, 59 insertions(+), 48 deletions(-) delete mode 100644 .github/workflows/publish-test-summary.yml diff --git a/.github/workflows/publish-test-summary.yml b/.github/workflows/publish-test-summary.yml deleted file mode 100644 index 67426eaede..0000000000 --- a/.github/workflows/publish-test-summary.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Publish Test Summary -on: - workflow_run: - workflows: ["build-and-test"] - types: - - completed - -jobs: - publish: - runs-on: ubuntu-latest - if: ${{ github.event.workflow_run.conclusion != 'skipped' }} - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Download Test Summary - uses: actions/download-artifact@v2 - with: - name: test-summary - - - name: Publish Test Summary - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: . - publish_branch: gh-pages - user_name: 'eanzhao' - user_email: 'yiqi.zhao@aelf.io' - commit_message: 'Update test summary' \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9eaaf6465f..7aff779662 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,37 +1,77 @@ -name: Test on: push: branches: - dev - master -env: - DOTNET_INSTALL_DIR: "./.dotnet" - Solution_Name: AElf.All.sln - Service_Name: AELF +permissions: + contents: read + actions: read + checks: write jobs: - test: + build-test: + name: Build & Test runs-on: ubuntu-latest - permissions: - pull-requests: write - contents: write steps: - - name: Checkout - uses: actions/checkout@v4 + - uses: actions/checkout@v4 + - name: Setup dotnet uses: actions/setup-dotnet@v4 with: dotnet-version: '6.0' - - name: Download AElf build tools - run: bash scripts/download_binary.sh + - run: dotnet restore + - run: dotnet build --no-restore + - run: dotnet test --no-build --no-restore --verbosity normal -l:"trx;LogFileName=TestResults.xml" + + - name: Install xmlstarlet + run: sudo apt-get install -y xmlstarlet - - name: Install Protobuf - run: bash scripts/install_protobuf.sh + - name: Extract Test Counts + id: test_counts + run: | + passed=0 + failed=0 + skipped=0 + for file in $(find . -name 'TestResults.xml') + do + passed=$((passed + $(xmlstarlet sel -t -v "/TestRun/ResultSummary/Counters/@passed" "$file"))) + failed=$((failed + $(xmlstarlet sel -t -v "/TestRun/ResultSummary/Counters/@failed" "$file"))) + total=$(xmlstarlet sel -t -v "/TestRun/ResultSummary/Counters/@total" "$file") + executed=$(xmlstarlet sel -t -v "/TestRun/ResultSummary/Counters/@executed" "$file") + skipped=$((total - executed)) + done + echo "::set-output name=passed::$passed" + echo "::set-output name=failed::$failed" + echo "::set-output name=skipped::$skipped" + + - name: Update Gist + uses: actions/github-script@v5 + with: + github-token: ${{secrets.GIST_TOKEN}} + script: | + const fs = require('fs'); + const passed = "${{ steps.test_counts.outputs.passed }}"; + const failed = "${{ steps.test_counts.outputs.failed }}"; + const skipped = "${{ steps.test_counts.outputs.skipped }}"; + const gistId = "59e13bd3823d754542ac98d24b3329b4"; + const filename = "test-results.json"; + const color = failed > 0 ? "red" : "brightgreen"; + const content = `{"schemaVersion":1,"label":"tests","message":"${passed} passed, ${failed} failed, ${skipped} skipped","color":"${color}"}`; - - name: Build Solution - run: bash scripts/build.sh + let gist; + try { + gist = await github.rest.gists.get({ gist_id: gistId }); + } catch (error) { + if (error.status !== 404) { + throw error; + } + } - - name: Run Tests - run: dotnet test ${{ env.Solution_Name }} + await github.rest.gists.update({ + gist_id: gistId, + files: { + [filename]: { content } + } + }); \ No newline at end of file