diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2024-07-20 20:27:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-20 20:27:08 +0200 |
commit | b9136e060d4e7543e41ee8d6b76035ef1d45b4b8 (patch) | |
tree | 27042ac6a7becd1c105584b6d1d39ce9518fdb7f /.github/actions/linux-build/action.yml | |
parent | 21f86d1c3c0d48ca8f31c6d6f29005fe492a9a2e (diff) |
fix(CI): tools (#19453)
* fix(CI): tools
* Update tools_build.yml
* I dont think this is neccessary. Let's see if CI agrees with me
Diffstat (limited to '.github/actions/linux-build/action.yml')
-rw-r--r-- | .github/actions/linux-build/action.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/actions/linux-build/action.yml b/.github/actions/linux-build/action.yml index 7218239cc2..132cfc9fa4 100644 --- a/.github/actions/linux-build/action.yml +++ b/.github/actions/linux-build/action.yml @@ -16,6 +16,11 @@ inputs: description: Flag to install modules or not required: true type: boolean + tools: + default: none + description: Flag to enable tools build + required: false + type: string pch: default: false description: Flag to enable or disable PCH @@ -94,7 +99,7 @@ runs: cmake "$GITHUB_WORKSPACE" \ -DCMAKE_INSTALL_PREFIX="$GITHUB_WORKSPACE/env/dist" \ -DAPPS_BUILD="all" \ - -DTOOLS_BUILD="all" \ + -DTOOLS_BUILD=${{ inputs.tools }} \ -DSCRIPTS="static" \ -DMODULES="static" \ -DWITH_WARNINGS="ON" \ @@ -144,10 +149,6 @@ runs: shell: bash run: sudo systemctl start mysql.service - - name: run dbimport - shell: bash - run: env/dist/bin/dbimport - - name: Dry run authserver shell: bash run: timeout 5m env/dist/bin/authserver --dry-run |