mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
66 lines
1.9 KiB
YAML
66 lines
1.9 KiB
YAML
name: macOS CI
|
|
on:
|
|
pull_request:
|
|
push:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
jobs:
|
|
build:
|
|
if: "!contains(github.event.head_commit.message, '[skip macos ci]')"
|
|
runs-on: macos-latest
|
|
env:
|
|
CXXFLAGS: -Wno-error=deprecated-declarations
|
|
INSPIRCD_DEBUG: 3
|
|
INSPIRCD_VERBOSE: 1
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
brew update || true
|
|
for PACKAGE in pkg-config argon2 gnutls libmaxminddb libpq mbedtls mysql-client openssl@1.1 pcre2 re2 sqlite;
|
|
do
|
|
brew install $PACKAGE || brew upgrade $PACKAGE
|
|
|
|
BREW_PREFIX=$(brew --prefix $PACKAGE)
|
|
if [ -d "$BREW_PREFIX/bin" ]
|
|
then
|
|
export PATH="$PATH:$BREW_PREFIX/bin"
|
|
fi
|
|
if [ -d "$BREW_PREFIX/lib/pkgconfig" ]
|
|
then
|
|
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$BREW_PREFIX/lib/pkgconfig"
|
|
fi
|
|
done
|
|
echo "PATH=$PATH" >> $GITHUB_ENV
|
|
echo "PKG_CONFIG_PATH=$PKG_CONFIG_PATH" >> $GITHUB_ENV
|
|
|
|
- name: Run configure
|
|
run: |
|
|
./configure --enable-extras "argon2 geo_maxmind ldap mysql pgsql regex_pcre regex_posix regex_re2 sqlite3 ssl_gnutls ssl_mbedtls ssl_openssl sslrehashsignal"
|
|
./configure --development --disable-auto-extras --socketengine ${{ matrix.socketengine }}
|
|
|
|
- name: Build core
|
|
run: |
|
|
INSPIRCD_TARGET=inspircd make --jobs $(($(sysctl -n hw.activecpu) + 1))
|
|
|
|
- name: Build modules
|
|
run: |
|
|
INSPIRCD_TARGET=modules make --jobs $(($(sysctl -n hw.activecpu) + 1))
|
|
|
|
- name: Install
|
|
run: |
|
|
make install
|
|
|
|
- name: Run
|
|
run: |
|
|
touch ${{ github.workspace }}/run/conf/inspircd.conf
|
|
${{ github.workspace }}/run/inspircd start
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
socketengine:
|
|
- kqueue
|
|
- poll
|
|
- select
|