Skip to content

Commit

Permalink
runner modificado
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelmaceira committed Dec 17, 2024
1 parent 03bae64 commit 11d80e6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -43,7 +43,7 @@ jobs:

windows-build:
name: 🏁 Windows
needs: static-checks
# needs: static-checks
uses: ./.github/workflows/windows_builds.yml

# Third stage: Extras
Expand Down

0 comments on commit 11d80e6

Please sign in to comment.