From 1b4ce2588075eb00e52da6e7fe60511968653948 Mon Sep 17 00:00:00 2001 From: "Guilherme G. Menaldo" Date: Sat, 1 Jun 2024 00:08:28 -0300 Subject: [PATCH] test --- .github/workflows/controller.yml | 114 ++++++++++++++--------------- .github/workflows/macos_latest.yml | 3 +- 2 files changed, 58 insertions(+), 59 deletions(-) diff --git a/.github/workflows/controller.yml b/.github/workflows/controller.yml index 1eeebf5d317..2dba5e52179 100644 --- a/.github/workflows/controller.yml +++ b/.github/workflows/controller.yml @@ -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 diff --git a/.github/workflows/macos_latest.yml b/.github/workflows/macos_latest.yml index 50a9a92257d..920fecc4315 100644 --- a/.github/workflows/macos_latest.yml +++ b/.github/workflows/macos_latest.yml @@ -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