소스 검색

Merge pull request #9452 from zmstone/1130-fix-ci-log-dir

ci: delete otp_release from log artifact name
Zaiming (Stone) Shi 3 년 전
부모
커밋
3052407abc
2개의 변경된 파일2개의 추가작업 그리고 21개의 파일을 삭제
  1. 0 17
      .github/workflows/codeball.yml
  2. 2 4
      .github/workflows/run_test_cases.yaml

+ 0 - 17
.github/workflows/codeball.yml

@@ -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"

+ 2 - 4
.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: