From 11d80e683cbfe31a9fbae999fa277d227ba7a557 Mon Sep 17 00:00:00 2001 From: manuelmaceira Date: Tue, 17 Dec 2024 08:04:50 -0300 Subject: [PATCH] runner modificado --- .github/workflows/runner.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/runner.yml b/.github/workflows/runner.yml index 6f2cb6c7..7c3564c9 100644 --- a/.github/workflows/runner.yml +++ b/.github/workflows/runner.yml @@ -11,29 +11,29 @@ concurrency: jobs: # First stage: Only static checks, fast and prevent expensive builds from running. - static-checks: - name: 📊 Static checks - uses: ./.github/workflows/static_checks.yml + # static-checks: + # name: 📊 Static checks + # uses: ./.github/workflows/static_checks.yml # Second stage: Run all the builds and some of the tests. test-coverage: name: 🔎 Test & Coverage - needs: static-checks + # needs: static-checks uses: ./.github/workflows/coverage.yml android-build: name: 🤖 Android (VR and Mobile) - needs: static-checks + # needs: static-checks uses: ./.github/workflows/android_builds.yml linux-build: name: 🐧 Linux - needs: static-checks + # needs: static-checks uses: ./.github/workflows/linux_builds.yml macos-build: name: 🍎 macOS - needs: static-checks + # needs: static-checks uses: ./.github/workflows/macos_builds.yml ios-build: @@ -43,7 +43,7 @@ jobs: windows-build: name: 🏁 Windows - needs: static-checks + # needs: static-checks uses: ./.github/workflows/windows_builds.yml # Third stage: Extras