name: macOS CI on: pull_request: push: schedule: - cron: '0 0 * * 0' jobs: build: runs-on: macos-latest env: CXXFLAGS: -I/usr/local/opt/openssl@1.1/include -Wno-error=deprecated-declarations INSPIRCD_DEBUG: 3 INSPIRCD_VERBOSE: 1 LDFLAGS: -L/usr/local/opt/openssl@1.1/lib PKG_CONFIG_PATH: /usr/local/opt/openssl@1.1/lib/pkgconfig:/usr/local/opt/sqlite/lib/pkgconfig 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 done brew link --force --overwrite libpq brew link --force --overwrite mysql-client - 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