소스 검색

Merge pull request #40875 from Xrayez/ci-show-tests-name

CI: Show `tests=yes` for builds which run tests
Rémi Verschelde 5 년 전
부모
커밋
49be94ec39
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      .github/workflows/linux_builds.yml
  2. 1 1
      .github/workflows/macos_builds.yml
  3. 1 1
      .github/workflows/windows_builds.yml

+ 1 - 1
.github/workflows/linux_builds.yml

@@ -9,7 +9,7 @@ env:
 jobs:
   linux-editor:
     runs-on: "ubuntu-20.04"
-    name: Editor w/ Mono (target=release_debug, tools=yes)
+    name: Editor w/ Mono (target=release_debug, tools=yes, tests=yes)
 
     steps:
       - uses: actions/checkout@v2

+ 1 - 1
.github/workflows/macos_builds.yml

@@ -10,7 +10,7 @@ jobs:
   macos-editor:
     runs-on: "macos-latest"
 
-    name: Editor (target=release_debug, tools=yes)
+    name: Editor (target=release_debug, tools=yes, tests=yes)
 
     steps:
       - uses: actions/checkout@v2

+ 1 - 1
.github/workflows/windows_builds.yml

@@ -14,7 +14,7 @@ jobs:
     runs-on: "windows-latest"
 
     # Windows Editor - checkout with the plugin
-    name: Editor (target=release_debug, tools=yes)
+    name: Editor (target=release_debug, tools=yes, tests=yes)
 
     steps:
     - uses: actions/checkout@v2