mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
2233b46512
* ci: format yaml and json files with prettier * chore: add changelog entry * fix: format everything * ci: run pretter on all files * ci: rename prettier step
26 lines
891 B
YAML
26 lines
891 B
YAML
freebsd_instance:
|
|
image: freebsd-13-1-release-amd64
|
|
|
|
task:
|
|
install_script:
|
|
- pkg install -y boost-libs git qt5-buildtools qt5-concurrent qt5-core qt5-multimedia qt5-svg qtkeychain-qt5 qt5-qmake cmake qt5-linguist
|
|
script: |
|
|
git submodule init
|
|
git submodule update
|
|
mkdir build
|
|
cd build
|
|
c++ --version
|
|
cmake \
|
|
-DCMAKE_C_COMPILER="cc" \
|
|
-DCMAKE_CXX_COMPILER="c++" \
|
|
-DCMAKE_C_FLAGS="-O2 -pipe -fstack-protector-strong -fno-strict-aliasing " \
|
|
-DCMAKE_CXX_FLAGS="-O2 -pipe -fstack-protector-strong -fno-strict-aliasing " \
|
|
-DLINK_OPTIONS="-fstack-protector-strong" \
|
|
-DCMAKE_INSTALL_PREFIX="/usr/local" \
|
|
-DUSE_SYSTEM_QTKEYCHAIN="ON" \
|
|
-DCMAKE_BUILD_TYPE="release" \
|
|
-DCMAKE_EXPORT_COMPILE_COMMANDS="ON" \
|
|
..
|
|
cat compile_commands.json
|
|
make -j $(getconf _NPROCESSORS_ONLN)
|