Skip to content

Commit

Permalink
[CI] Build with WITH_MYSQL, WITH_POSTGRES, WITH_CHATAI options activa…
Browse files Browse the repository at this point in the history
…ted. (#3536)
  • Loading branch information
Jarod42 authored Nov 19, 2024
1 parent 47558ad commit b80ae95
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
mkdir build-release
cd build-release
brew install autoconf automake libtool gettext
cmake .. -DCMAKE_BUILD_TYPE=Release -Wno-dev -DWITH_MYSQL=1 -DBUILD_TESTING=1 -DWITH_POSTGRES=1
cmake .. -DCMAKE_BUILD_TYPE=Release -Wno-dev -DWITH_MYSQL=1 -DWITH_POSTGRES=1 -DWITH_CHATAI=1 -DBUILD_TESTING=1
cmake --build . -j $(sysctl -n hw.physicalcpu)
cmake --build . --target install
ctest --output-on-failure
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msys2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
run: |
mkdir build-release
cd build-release
MSYS2_BASE=/d/a/_temp/msys64 PATH="$HOME/root/bin:$PATH" cmake .. -G"MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DWXWIN="$HOME/root" -Wno-dev -DBUILD_TESTING=0
MSYS2_BASE=/d/a/_temp/msys64 PATH="$HOME/root/bin:$PATH" cmake .. -G"MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DWXWIN="$HOME/root" -Wno-dev -DWITH_CHATAI=1 -DBUILD_TESTING=0
PATH="$HOME/root/bin:$PATH" mingw32-make -j$(nproc) install
PATH="$HOME/root/bin:$PATH" mingw32-make -j$(nproc) setup
# ctest --output-on-failure # Missing dll near test executables
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: |
mkdir build-release
cd build-release
cmake -DCMAKE_BUILD_TYPE=Release .. -DCOPY_WX_LIBS=1 -DBUILD_TESTING=1
cmake .. -DCMAKE_BUILD_TYPE=Release -DWITH_MYSQL=1 -DWITH_POSTGRES=1 -DWITH_CHATAI=1 -DCOPY_WX_LIBS=1 -DBUILD_TESTING=1
make -j$(nproc)
sudo make install
ctest --output-on-failure
Expand Down

0 comments on commit b80ae95

Please sign in to comment.