mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
workflows: add charybdis
This commit is contained in:
52
.github/workflows/charybdis.yml
vendored
Normal file
52
.github/workflows/charybdis.yml
vendored
Normal file
@ -0,0 +1,52 @@
|
||||
name: irctest with Charybdis
|
||||
|
||||
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/charybdis
|
||||
key: ${{ runner.os }}-charybdis
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install pytest -r requirements.txt
|
||||
|
||||
- name: Checkout Charybdis
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: charybdis-ircd/charybdis
|
||||
ref: charybdis-4.1.2
|
||||
path: charybdis
|
||||
|
||||
- name: Build Charybdis
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE/charybdis/
|
||||
./autogen.sh
|
||||
./configure --prefix=$HOME/.local/
|
||||
make -j 4
|
||||
make install
|
||||
|
||||
- name: Test with pytest
|
||||
run: |
|
||||
PATH=~/.local/bin:$PATH pytest --controller=irctest.controllers.charybdis -k 'not Oragono and not deprecated and not strict and not testDoubleKickMessages'
|
||||
|
36
.github/workflows/lint.yml
vendored
Normal file
36
.github/workflows/lint.yml
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
name: Lint
|
||||
|
||||
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
|
||||
key: ${{ runner.os }}-lint
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
python -m pip install pre-commit pytest
|
||||
pip install -r requirements.txt
|
||||
|
||||
- name: Lint
|
||||
run: |
|
||||
pre-commit run -a
|
9
.github/workflows/oragono.yml
vendored
9
.github/workflows/oragono.yml
vendored
@ -24,17 +24,12 @@ jobs:
|
||||
path: |
|
||||
~/.cache
|
||||
$GITHUB_WORKSPACE/oragono
|
||||
key: ${{ runner.os }}
|
||||
key: ${{ runner.os }}-oragono
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
python -m pip install pre-commit pytest
|
||||
pip install -r requirements.txt
|
||||
|
||||
- name: Lint
|
||||
run: |
|
||||
pre-commit run -a
|
||||
pip install pytest -r requirements.txt
|
||||
|
||||
- name: Checkout Oragono
|
||||
uses: actions/checkout@v2
|
||||
|
Reference in New Issue
Block a user