Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
guilherme-gm committed Jun 1, 2024
1 parent b977fcb commit 1b4ce25
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 59 deletions.
114 changes: 57 additions & 57 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
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
# 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_m1:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/macos_m1.yml
# windows:
# needs: build
# if: ${{ !failure() && !cancelled() }}
# uses: ./.github/workflows/windows.yml
3 changes: 1 addition & 2 deletions .github/workflows/macos_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ jobs:

env:
CC: ${{ matrix.CC }}
CONFIGURE_FLAGS: CC=${{ matrix.CC }} --enable-debug --enable-Werror --enable-buildbot ${{ matrix.RENEWAL }} ${{ matrix.HTTPLIB }} ${{ matrix.CLIENT_TYPE }} ${{ matrix.SANITIZER }} ${{ matrix.PACKET_VERSION }}
CPPFLAGS: ${{ matrix.CLASSIC_AUTOSPELL_LIST }}
CONFIGURE_FLAGS: CC=${{ matrix.CC }} --enable-debug --enable-Werror --enable-buildbot ${{ matrix.RENEWAL }} ${{ matrix.HTTPLIB }} ${{ matrix.CLIENT_TYPE }} ${{ matrix.SANITIZER }} ${{ matrix.PACKET_VERSION }} ${{ CLASSIC_AUTOSPELL_LIST && 'CPPFLAGS=-DCLASSIC_AUTOSPELL_LIST' }}
PACKET_VERSION: ${{ matrix.PACKET_VERSION }}
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 1b4ce25

Please sign in to comment.