forked from inspircd/inspircd-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (66 loc) · 2.21 KB
/
ci-macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: macOS CI
on:
push:
paths:
- '3.0/*'
pull_request:
paths:
- '3.0/*'
jobs:
build:
runs-on: macos-latest
env:
CXXFLAGS: -std=${{ matrix.standard }} -Wno-error=deprecated-declarations
INSPIRCD_DEBUG: 3
INSPIRCD_VERBOSE: 1
steps:
- name: Install dependencies
run: |
brew update || true
brew install pkg-config
- name: Checkout InspIRCd@insp3
uses: actions/checkout@v4
with:
repository: 'inspircd/inspircd'
ref: 'insp3'
path: 'inspircd'
- name: Checkout self
uses: actions/checkout@v4
with:
path: 'contrib'
- name: (Pull Request) Set the build target to only the changed modules
if: github.event_name == 'pull_request'
run: |
cd contrib
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
echo INSPIRCD_TARGET=$( \
git diff --name-only origin/${{ github.base_ref }} ${{ github.sha }} | \
for f in `cat`; do if [[ "$f" = "3.0/"*".cpp" ]]; \
then echo "$(basename $f .cpp) "; fi; done) >> $GITHUB_ENV
- name: (Push/PR Fallback) Set the build target to all of the modules
if: github.event_name == 'push' || env.INSPIRCD_TARGET == ''
run: echo INSPIRCD_TARGET=$(for f in contrib/3.0/*; do echo "$(basename $f .cpp) "; done) >> $GITHUB_ENV
- name: Symlink the modules
run: |
cd inspircd/src/modules
ln -s ../../../contrib/3.0/* .
- name: Check for additional dependencies
run: |
cd inspircd
echo PACKAGES=$( \
for f in ../contrib/3.0/*; do if [[ "$INSPIRCD_TARGET" = *"$(basename $f .cpp)"* ]]; \
then ./tools/directive $f PackageInfo; fi; done) >> $GITHUB_ENV
- name: Install additional dependencies
if: env.PACKAGES != ''
run: brew install ${{ env.PACKAGES }}
- name: Build the modules
run: |
cd inspircd
./configure --development --disable-auto-extras
make --jobs $(($(sysctl -n hw.activecpu) + 1))
strategy:
fail-fast: false
matrix:
standard:
- gnu++98
- c++14