From 4de76ba1b2271ec929f40e92b826c3164dde5b3e Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Wed, 24 Feb 2021 12:17:22 +0100 Subject: [PATCH] workflows: add charybdis --- .github/workflows/charybdis.yml | 52 +++++++++++++++++++++++++++++++++ .github/workflows/lint.yml | 36 +++++++++++++++++++++++ .github/workflows/oragono.yml | 9 ++---- 3 files changed, 90 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/charybdis.yml create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/charybdis.yml b/.github/workflows/charybdis.yml new file mode 100644 index 0000000..212af76 --- /dev/null +++ b/.github/workflows/charybdis.yml @@ -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' + diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..f6bd066 --- /dev/null +++ b/.github/workflows/lint.yml @@ -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 diff --git a/.github/workflows/oragono.yml b/.github/workflows/oragono.yml index 1a54425..1b791a4 100644 --- a/.github/workflows/oragono.yml +++ b/.github/workflows/oragono.yml @@ -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