From 5eacc84d1f648fb9df55516a428f98e6dfc27309 Mon Sep 17 00:00:00 2001 From: "Zaiming (Stone) Shi" Date: Wed, 30 Nov 2022 09:30:40 +0100 Subject: [PATCH 1/2] ci: delete otp_release from log artifact name --- .github/workflows/run_test_cases.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run_test_cases.yaml b/.github/workflows/run_test_cases.yaml index 03030908c..f35a7156e 100644 --- a/.github/workflows/run_test_cases.yaml +++ b/.github/workflows/run_test_cases.yaml @@ -97,8 +97,6 @@ jobs: fail-fast: false matrix: app_name: ${{ fromJson(needs.prepare.outputs.docker_ct_apps) }} - otp_release: - - "erlang24" runs-on: aws-amd64 defaults: @@ -130,7 +128,7 @@ jobs: - uses: actions/upload-artifact@v3 if: failure() with: - name: logs_${{ matrix.otp_release }}-${{ matrix.profile }} + name: logs-${{ matrix.profile }} path: source/_build/test/logs ct: @@ -192,7 +190,7 @@ jobs: - uses: actions/upload-artifact@v3 if: failure() with: - name: logs_${{ matrix.otp_release }}-${{ matrix.profile }} + name: logs-${{ matrix.profile }} path: source/_build/test/logs make_cover: From 720c233dd5ead1d7aa67909497a68512f846ce64 Mon Sep 17 00:00:00 2001 From: "Zaiming (Stone) Shi" Date: Wed, 30 Nov 2022 09:37:08 +0100 Subject: [PATCH 2/2] ci: delete codeball --- .github/workflows/codeball.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/codeball.yml diff --git a/.github/workflows/codeball.yml b/.github/workflows/codeball.yml deleted file mode 100644 index ed69d5c10..000000000 --- a/.github/workflows/codeball.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Codeball -on: [pull_request] - -jobs: - codeball_job: - runs-on: ubuntu-latest - name: Codeball - steps: - # Run Codeball on all new Pull Requests 🚀 - # For customizations and more documentation, see https://github.com/sturdy-dev/codeball-action - - name: Codeball - uses: sturdy-dev/codeball-action@v2 - with: - approvePullRequests: "true" - labelPullRequestsWhenApproved: "true" - labelPullRequestsWhenReviewNeeded: "false" - failJobsWhenReviewNeeded: "false"