mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 15:29:50 +00:00
Add Plexus4 (#90)
This commit is contained in:
79
.github/workflows/test-stable.yml
vendored
79
.github/workflows/test-stable.yml
vendored
@ -135,6 +135,46 @@ jobs:
|
||||
name: installed-inspircd
|
||||
path: ~/artefacts-*.tar.gz
|
||||
retention-days: 1
|
||||
build-plexus4:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Create directories
|
||||
run: cd ~/; mkdir -p .local/ go/
|
||||
- name: Cache dependencies
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
key: ${{ runner.os }}-plexus4-stable
|
||||
path: |-
|
||||
~/.cache
|
||||
$GITHUB_WORKSPACE/placeholder
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.7
|
||||
- name: clone
|
||||
run: 'curl https://gitlab.com/rizon/plexus4/-/archive/20200510_0-610/plexus4-20200510_0-610.tar.gz
|
||||
| tar -zx
|
||||
|
||||
mv plexus4* plexus4'
|
||||
- name: build
|
||||
run: 'cd $GITHUB_WORKSPACE/plexus4
|
||||
|
||||
./autogen.sh
|
||||
|
||||
./configure --prefix=$HOME/.local/
|
||||
|
||||
make -j 4
|
||||
|
||||
make install'
|
||||
- name: Make artefact tarball
|
||||
run: cd ~; tar -czf artefacts-plexus4.tar.gz .local/ go/
|
||||
- name: Upload build artefacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: installed-plexus4
|
||||
path: ~/artefacts-*.tar.gz
|
||||
retention-days: 1
|
||||
build-solanum:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
@ -226,6 +266,7 @@ jobs:
|
||||
- test-inspircd-anope
|
||||
- test-inspircd-atheme
|
||||
- test-limnoria
|
||||
- test-plexus4
|
||||
- test-solanum
|
||||
- test-sopel
|
||||
- test-unrealircd
|
||||
@ -472,6 +513,44 @@ jobs:
|
||||
with:
|
||||
name: pytest results limnoria (stable)
|
||||
path: pytest.xml
|
||||
test-plexus4:
|
||||
needs:
|
||||
- build-plexus4
|
||||
- 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-plexus4
|
||||
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 -r requirements.txt
|
||||
- name: Test with pytest
|
||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
|
||||
plexus4
|
||||
- if: always()
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results plexus4 (stable)
|
||||
path: pytest.xml
|
||||
test-solanum:
|
||||
needs:
|
||||
- build-solanum
|
||||
|
Reference in New Issue
Block a user