mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
216 lines
6.5 KiB
YAML
216 lines
6.5 KiB
YAML
# This file was auto-generated by make_workflows.py.
|
|
# Do not edit it manually, modifications will be lost.
|
|
|
|
jobs:
|
|
build-anope:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Create directories
|
|
run: cd ~/; mkdir -p .local/ go/
|
|
- name: Cache Anope
|
|
uses: actions/cache@v2
|
|
with:
|
|
key: 3-${{ runner.os }}-anope-2.0.9
|
|
path: '~/.cache
|
|
|
|
${{ github.workspace }}/anope
|
|
|
|
'
|
|
- name: Checkout Anope
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: anope
|
|
ref: 2.0.9
|
|
repository: anope/anope
|
|
- name: Build Anope
|
|
run: |-
|
|
cd $GITHUB_WORKSPACE/anope/
|
|
cp $GITHUB_WORKSPACE/data/anope/* .
|
|
CFLAGS=-O0 ./Config -quick
|
|
make -C build -j 4
|
|
make -C build install
|
|
- name: Make artefact tarball
|
|
run: cd ~; tar -czf artefacts-anope.tar.gz .local/ go/
|
|
- name: Upload build artefacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: installed-anope
|
|
path: ~/artefacts-*.tar.gz
|
|
retention-days: 1
|
|
build-inspircd:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Create directories
|
|
run: cd ~/; mkdir -p .local/ go/
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python 3.7
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.7
|
|
- name: Checkout InspIRCd
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: inspircd
|
|
ref: insp3
|
|
repository: inspircd/inspircd
|
|
- name: Build InspIRCd
|
|
run: |
|
|
cd $GITHUB_WORKSPACE/inspircd/
|
|
patch src/inspircd.cpp < $GITHUB_WORKSPACE/patches/inspircd_mainloop.patch
|
|
./configure --prefix=$HOME/.local/inspircd --development
|
|
make -j 4
|
|
make install
|
|
- name: Make artefact tarball
|
|
run: cd ~; tar -czf artefacts-inspircd.tar.gz .local/ go/
|
|
- name: Upload build artefacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: installed-inspircd
|
|
path: ~/artefacts-*.tar.gz
|
|
retention-days: 1
|
|
publish-test-results:
|
|
if: success() || failure()
|
|
name: Publish Unit Tests Results
|
|
needs:
|
|
- test-inspircd
|
|
- test-inspircd-anope
|
|
- test-inspircd-atheme
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Download Artifacts
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
path: artifacts
|
|
- if: github.event_name == 'pull_request'
|
|
name: Publish Unit Test Results
|
|
uses: actions/github-script@v4
|
|
with:
|
|
result-encoding: string
|
|
script: |
|
|
let body = '';
|
|
const options = {};
|
|
options.listeners = {
|
|
stdout: (data) => {
|
|
body += data.toString();
|
|
}
|
|
};
|
|
await exec.exec('bash', ['-c', 'shopt -s globstar; python3 report.py artifacts/**/*.xml'], options);
|
|
github.issues.createComment({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
body: body,
|
|
});
|
|
return body;
|
|
test-inspircd:
|
|
needs:
|
|
- build-inspircd
|
|
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: Download build artefacts
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
name: installed-inspircd
|
|
path: '~'
|
|
- name: Unpack artefacts
|
|
run: cd ~; find -name 'artefacts-*.tar.gz' -exec tar -xzf '{}' \;
|
|
- name: Install Atheme
|
|
run: sudo apt-get install atheme-services
|
|
- name: Install irctest dependencies
|
|
run: |-
|
|
python -m pip install --upgrade pip
|
|
pip install pytest pytest-xdist -r requirements.txt
|
|
- name: Test with pytest
|
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/.local/inspircd/sbin:~/.local/inspircd/bin:$PATH
|
|
make inspircd
|
|
- if: always()
|
|
name: Publish results
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: pytest results inspircd (devel_release)
|
|
path: pytest.xml
|
|
test-inspircd-anope:
|
|
needs:
|
|
- build-inspircd
|
|
- build-anope
|
|
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: Download build artefacts
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
name: installed-inspircd
|
|
path: '~'
|
|
- name: Download build artefacts
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
name: installed-anope
|
|
path: '~'
|
|
- name: Unpack artefacts
|
|
run: cd ~; find -name 'artefacts-*.tar.gz' -exec tar -xzf '{}' \;
|
|
- name: Install Atheme
|
|
run: sudo apt-get install atheme-services
|
|
- name: Install irctest dependencies
|
|
run: |-
|
|
python -m pip install --upgrade pip
|
|
pip install pytest pytest-xdist -r requirements.txt
|
|
- name: Test with pytest
|
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/.local/inspircd/sbin:~/.local/inspircd/bin:$PATH make
|
|
inspircd-anope
|
|
- if: always()
|
|
name: Publish results
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: pytest results inspircd-anope (devel_release)
|
|
path: pytest.xml
|
|
test-inspircd-atheme:
|
|
needs:
|
|
- build-inspircd
|
|
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: Download build artefacts
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
name: installed-inspircd
|
|
path: '~'
|
|
- name: Unpack artefacts
|
|
run: cd ~; find -name 'artefacts-*.tar.gz' -exec tar -xzf '{}' \;
|
|
- name: Install Atheme
|
|
run: sudo apt-get install atheme-services
|
|
- name: Install irctest dependencies
|
|
run: |-
|
|
python -m pip install --upgrade pip
|
|
pip install pytest pytest-xdist -r requirements.txt
|
|
- name: Test with pytest
|
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/.local/inspircd/sbin:~/.local/inspircd/bin:$PATH
|
|
make inspircd-atheme
|
|
- if: always()
|
|
name: Publish results
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: pytest results inspircd-atheme (devel_release)
|
|
path: pytest.xml
|
|
name: irctest with devel_release versions
|
|
'on':
|
|
schedule:
|
|
- cron: 51 8 * * 6
|
|
- cron: 51 8 * * 0
|
|
- cron: 51 17 * * *
|
|
workflow_dispatch: null
|