ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/.github/workflows/ci.yml
Revision: 9983
Committed: Tue Jun 15 16:38:31 2021 UTC (2 years, 10 months ago) by michael
File size: 527 byte(s)
Log Message:
- ci.yml: build on macos-latest but exclude gcc for now

File Contents

# Content
1 name: CI
2
3 on: [push, pull_request]
4
5 jobs:
6 build:
7 runs-on: ${{ matrix.os }}
8 timeout-minutes: 10
9
10 strategy:
11 matrix:
12 os: [macos-latest, ubuntu-latest]
13 compiler: [gcc, clang]
14 exclude:
15 - os: macos-latest
16 compiler: gcc
17
18 env:
19 CC: ${{ matrix.compiler }}
20
21 steps:
22 - uses: actions/checkout@v2
23 - name: configure
24 run: ./configure --enable-warnings
25 - name: make
26 run: make -j$(nproc)
27 - name: make install
28 run: sudo make install