Skip to content

Commit

Permalink
disable flows
Browse files Browse the repository at this point in the history
  • Loading branch information
guilherme-gm committed Aug 18, 2024
1 parent 0810d65 commit af94250
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 54 deletions.
108 changes: 54 additions & 54 deletions .github/workflows/controller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,63 +3,63 @@ 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
# 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
# needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/mariadb.yml
mysql:
needs: build
# needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/mysql.yml
macos_latest:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/macos_latest.yml
macos_m1:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/macos_m1.yml
windows:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/windows.yml
# macos_latest:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/macos_latest.yml
# macos_m1:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/macos_m1.yml
# windows:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/windows.yml
2 changes: 2 additions & 0 deletions tools/ci/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ case "$MODE" in
;;
esac

mysql --version

case "$MODE" in
createdb)
echo "Creating database $DBNAME as $DBUSER..."
Expand Down

0 comments on commit af94250

Please sign in to comment.