irctest/.github/workflows/inspircd.yml

54 lines
1.1 KiB
YAML
Raw Normal View History

2021-02-24 11:31:36 +00:00
name: irctest with InspIRCd
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Cache dependencies
uses: actions/cache@v2
with:
path: |
~/.cache
$GITHUB_WORKSPACE/inspircd
key: ${{ runner.os }}-inspircd
- name: Install dependencies
run: |
sudo apt-get install atheme-services
2021-02-24 11:31:36 +00:00
python -m pip install --upgrade pip
pip install pytest -r requirements.txt
- name: Checkout InspIRCd
uses: actions/checkout@v2
with:
repository: inspircd/inspircd
ref: v3.8.1
path: inspircd
- name: Build InspIRCd
run: |
cd $GITHUB_WORKSPACE/inspircd/
patch src/inspircd.cpp < $GITHUB_WORKSPACE/inspircd_mainloop.patch
2021-02-24 11:31:36 +00:00
./configure --prefix=$HOME/.local/ --development
make -j 4
make install
- name: Test with pytest
run: |
PATH=~/.local/bin:$PATH make inspircd
2021-02-24 11:31:36 +00:00