Skip to content

Commit

Permalink
Removed all tests except macos
Browse files Browse the repository at this point in the history
  • Loading branch information
csnv committed Apr 7, 2024
1 parent 77bd14a commit c1beb2c
Showing 1 changed file with 52 additions and 52 deletions.
104 changes: 52 additions & 52 deletions .github/workflows/controller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,54 +3,54 @@ name: controller
on: [push, pull_request]

jobs:
hwsapibot:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses: ./.github/workflows/hwsapibot.yml
secrets: inherit
codeql:
needs: hwsapibot
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/codeql-analysis.yml
tools:
needs: hwsapibot
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/tools.yml
build:
needs: tools
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/build.yml
clang15_test:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/clang15_test.yml
gcc_test:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/gcc_test.yml
gccold1:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/gccold1.yml
gccold2:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/gccold2.yml
gccold3:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/gccold3.yml
gccsnapshot_test:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/gccsnapshot_test.yml
mariadb:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/mariadb.yml
mysql:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/mysql.yml
# hwsapibot:
# if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
# uses: ./.github/workflows/hwsapibot.yml
# secrets: inherit
# codeql:
# needs: hwsapibot
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/codeql-analysis.yml
# tools:
# needs: hwsapibot
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/tools.yml
# build:
# needs: tools
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/build.yml
# clang15_test:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/clang15_test.yml
# gcc_test:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/gcc_test.yml
# gccold1:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/gccold1.yml
# gccold2:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/gccold2.yml
# gccold3:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/gccold3.yml
# gccsnapshot_test:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/gccsnapshot_test.yml
# mariadb:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/mariadb.yml
# mysql:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/mysql.yml
macos_latest:
needs: build
if: ${{ !failure() && !cancelled() }}
Expand All @@ -59,7 +59,7 @@ jobs:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/macos_m1.yml
windows:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/windows.yml
# windows:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/windows.yml

0 comments on commit c1beb2c

Please sign in to comment.