mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
Deduplicate Insp/Unreal/Anope builds (#77)
This commit is contained in:
460
.github/workflows/test-devel.yml
vendored
460
.github/workflows/test-devel.yml
vendored
@ -2,10 +2,149 @@
|
|||||||
# Do not edit it manually, modifications will be lost.
|
# Do not edit it manually, modifications will be lost.
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
build-anope:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Create directories
|
||||||
|
run: cd ~/; mkdir -p .local/ go/
|
||||||
|
- 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: master
|
||||||
|
repository: inspircd/inspircd
|
||||||
|
- name: Build InspIRCd
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/inspircd/
|
||||||
|
patch src/inspircd.cpp < $GITHUB_WORKSPACE/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
|
||||||
|
build-solanum:
|
||||||
|
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 }}-solanum-devel
|
||||||
|
path: |-
|
||||||
|
~/.cache
|
||||||
|
$GITHUB_WORKSPACE/solanum
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Python 3.7
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: 3.7
|
||||||
|
- name: Checkout Solanum
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: solanum
|
||||||
|
ref: main
|
||||||
|
repository: solanum-ircd/solanum
|
||||||
|
- name: Build Solanum
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/solanum/
|
||||||
|
./autogen.sh
|
||||||
|
./configure --prefix=$HOME/.local/
|
||||||
|
make -j 4
|
||||||
|
make install
|
||||||
|
- name: Make artefact tarball
|
||||||
|
run: cd ~; tar -czf artefacts-solanum.tar.gz .local/ go/
|
||||||
|
- name: Upload build artefacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: installed-solanum
|
||||||
|
path: ~/artefacts-*.tar.gz
|
||||||
|
retention-days: 1
|
||||||
|
build-unrealircd:
|
||||||
|
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 }}-unrealircd-devel
|
||||||
|
path: |-
|
||||||
|
~/.cache
|
||||||
|
$GITHUB_WORKSPACE/unrealircd
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Python 3.7
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: 3.7
|
||||||
|
- name: Checkout UnrealIRCd
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: unrealircd
|
||||||
|
ref: unreal52
|
||||||
|
repository: unrealircd/unrealircd
|
||||||
|
- name: Build UnrealIRCd
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/unrealircd/
|
||||||
|
cp $GITHUB_WORKSPACE/data/unreal/* .
|
||||||
|
# Need to use a specific -march, because GitHub has inconsistent
|
||||||
|
# architectures across workers, which result in random SIGILL with some
|
||||||
|
# worker combinations
|
||||||
|
sudo apt install libsodium-dev libargon2-dev
|
||||||
|
CFLAGS="-O0 -march=x86-64" CXXFLAGS="$CFLAGS" ./Config -quick
|
||||||
|
make -j 4
|
||||||
|
make install
|
||||||
|
- name: Make artefact tarball
|
||||||
|
run: cd ~; tar -czf artefacts-unrealircd.tar.gz .local/ go/
|
||||||
|
- name: Upload build artefacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: installed-unrealircd
|
||||||
|
path: ~/artefacts-*.tar.gz
|
||||||
|
retention-days: 1
|
||||||
publish-test-results:
|
publish-test-results:
|
||||||
if: success() || failure()
|
if: success() || failure()
|
||||||
name: Publish Unit Tests Results
|
name: Publish Unit Tests Results
|
||||||
needs:
|
needs:
|
||||||
|
- test-charybdis
|
||||||
- test-solanum
|
- test-solanum
|
||||||
- test-ergo
|
- test-ergo
|
||||||
- test-inspircd
|
- test-inspircd
|
||||||
@ -24,7 +163,9 @@ jobs:
|
|||||||
uses: EnricoMi/publish-unit-test-result-action@v1
|
uses: EnricoMi/publish-unit-test-result-action@v1
|
||||||
with:
|
with:
|
||||||
files: artifacts/**/*.xml
|
files: artifacts/**/*.xml
|
||||||
test-ergo:
|
test-charybdis:
|
||||||
|
needs:
|
||||||
|
- build-charybdis
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -32,42 +173,70 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- uses: actions/setup-go@v2
|
- name: Download build artefacts
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
go-version: ~1.16
|
name: installed-charybdis
|
||||||
- run: go version
|
path: '~'
|
||||||
- name: Cache dependencies
|
- name: Unpack artefacts
|
||||||
uses: actions/cache@v2
|
run: cd ~; find -name 'artefacts-*.tar.gz' -exec tar -xzf '{}' \;
|
||||||
with:
|
- name: Install Atheme
|
||||||
key: ${{ runner.os }}-ergo-devel
|
run: sudo apt-get install atheme-services
|
||||||
path: |-
|
- name: Install irctest dependencies
|
||||||
~/.cache
|
|
||||||
$GITHUB_WORKSPACE/ergo
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |-
|
run: |-
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
|
- name: Test with pytest
|
||||||
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
|
||||||
|
charybdis
|
||||||
|
- if: always()
|
||||||
|
name: Publish results
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: pytest results charybdis (devel)
|
||||||
|
path: pytest.xml
|
||||||
|
test-ergo:
|
||||||
|
needs: []
|
||||||
|
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: Checkout Ergo
|
- name: Checkout Ergo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
path: ergo
|
path: ergo
|
||||||
ref: master
|
ref: master
|
||||||
repository: ergochat/ergo
|
repository: ergochat/ergo
|
||||||
|
- uses: actions/setup-go@v2
|
||||||
|
with:
|
||||||
|
go-version: ~1.16
|
||||||
|
- run: go version
|
||||||
- name: Build Ergo
|
- name: Build Ergo
|
||||||
run: |
|
run: |
|
||||||
cd $GITHUB_WORKSPACE/ergo/
|
cd $GITHUB_WORKSPACE/ergo/
|
||||||
make build
|
make build
|
||||||
make install
|
make install
|
||||||
|
- 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
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/go/bin:$PATH make ergo
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/go/bin:$PATH
|
||||||
|
make ergo
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results Ergo (devel)
|
name: pytest results ergo (devel)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-inspircd:
|
test-inspircd:
|
||||||
|
needs:
|
||||||
|
- build-inspircd
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -75,34 +244,32 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Install dependencies
|
- 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: |-
|
run: |-
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
- name: Checkout InspIRCd
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
path: inspircd
|
|
||||||
ref: master
|
|
||||||
repository: inspircd/inspircd
|
|
||||||
- name: Build InspIRCd
|
|
||||||
run: |
|
|
||||||
cd $GITHUB_WORKSPACE/inspircd/
|
|
||||||
patch src/inspircd.cpp < $GITHUB_WORKSPACE/inspircd_mainloop.patch
|
|
||||||
./configure --prefix=$HOME/.local/inspircd --development
|
|
||||||
make -j 4
|
|
||||||
make install
|
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/inspircd/bin:$PATH PYTEST_ARGS="$PYTEST_ARGS
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PYTEST_ARGS="$PYTEST_ARGS
|
||||||
-m 'not services'" make inspircd
|
-m 'not services'" PATH=~/.local/inspircd/bin:$PATH make inspircd
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results InspIRCd (devel)
|
name: pytest results inspircd (devel)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-inspircd-anope:
|
test-inspircd-anope:
|
||||||
|
needs:
|
||||||
|
- build-inspircd
|
||||||
|
- build-anope
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -110,47 +277,35 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Install dependencies
|
- 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: |-
|
run: |-
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
- name: Checkout InspIRCd
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
path: inspircd
|
|
||||||
ref: master
|
|
||||||
repository: inspircd/inspircd
|
|
||||||
- name: Build InspIRCd
|
|
||||||
run: |
|
|
||||||
cd $GITHUB_WORKSPACE/inspircd/
|
|
||||||
patch src/inspircd.cpp < $GITHUB_WORKSPACE/inspircd_mainloop.patch
|
|
||||||
./configure --prefix=$HOME/.local/inspircd --development
|
|
||||||
make -j 4
|
|
||||||
make install
|
|
||||||
- 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: Test with pytest
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/inspircd/bin:$PATH make
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PYTEST_ARGS="$PYTEST_ARGS
|
||||||
inspircd-anope
|
-m 'not services'" PATH=~/.local/inspircd/bin:$PATH make inspircd-anope
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results InspIRCd (devel)
|
name: pytest results anope (devel)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-limnoria:
|
test-limnoria:
|
||||||
|
needs: []
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -158,29 +313,26 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Cache dependencies
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
key: ${{ runner.os }}-limnoria-devel
|
|
||||||
path: |-
|
|
||||||
~/.cache
|
|
||||||
$GITHUB_WORKSPACE/placeholder
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |-
|
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install pytest -r requirements.txt
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install git+https://github.com/ProgVal/Limnoria.git@testing cryptography
|
run: pip install git+https://github.com/ProgVal/Limnoria.git@testing cryptography
|
||||||
|
- 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
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/bin:$PATH make limnoria
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
|
||||||
|
limnoria
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results Limnoria (devel)
|
name: pytest results limnoria (devel)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-solanum:
|
test-solanum:
|
||||||
|
needs:
|
||||||
|
- build-solanum
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -188,40 +340,30 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Cache dependencies
|
- name: Download build artefacts
|
||||||
uses: actions/cache@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
key: ${{ runner.os }}-solanum-devel
|
name: installed-solanum
|
||||||
path: |-
|
path: '~'
|
||||||
~/.cache
|
- name: Unpack artefacts
|
||||||
$GITHUB_WORKSPACE/solanum
|
run: cd ~; find -name 'artefacts-*.tar.gz' -exec tar -xzf '{}' \;
|
||||||
- name: Install dependencies
|
- name: Install Atheme
|
||||||
|
run: sudo apt-get install atheme-services
|
||||||
|
- name: Install irctest dependencies
|
||||||
run: |-
|
run: |-
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
- name: Checkout Solanum
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
path: solanum
|
|
||||||
ref: main
|
|
||||||
repository: solanum-ircd/solanum
|
|
||||||
- name: Build Solanum
|
|
||||||
run: |
|
|
||||||
cd $GITHUB_WORKSPACE/solanum/
|
|
||||||
./autogen.sh
|
|
||||||
./configure --prefix=$HOME/.local/
|
|
||||||
make -j 4
|
|
||||||
make install
|
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/bin:$PATH make solanum
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
|
||||||
|
solanum
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results Solanum (devel)
|
name: pytest results solanum (devel)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-sopel:
|
test-sopel:
|
||||||
|
needs: []
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -229,29 +371,26 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Cache dependencies
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
key: ${{ runner.os }}-sopel-devel
|
|
||||||
path: |-
|
|
||||||
~/.cache
|
|
||||||
$GITHUB_WORKSPACE/placeholder
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |-
|
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install pytest -r requirements.txt
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install git+https://github.com/sopel-irc/sopel.git
|
run: pip install git+https://github.com/sopel-irc/sopel.git
|
||||||
|
- 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
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/bin:$PATH make sopel
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
|
||||||
|
sopel
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results Sopel (devel)
|
name: pytest results sopel (devel)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-unrealircd:
|
test-unrealircd:
|
||||||
|
needs:
|
||||||
|
- build-unrealircd
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -259,41 +398,32 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Cache dependencies
|
- name: Download build artefacts
|
||||||
uses: actions/cache@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
key: ${{ runner.os }}-unrealircd-devel
|
name: installed-unrealircd
|
||||||
path: |-
|
path: '~'
|
||||||
~/.cache
|
- name: Unpack artefacts
|
||||||
$GITHUB_WORKSPACE/unrealircd
|
run: cd ~; find -name 'artefacts-*.tar.gz' -exec tar -xzf '{}' \;
|
||||||
- name: Install dependencies
|
- name: Install Atheme
|
||||||
|
run: sudo apt-get install atheme-services
|
||||||
|
- name: Install irctest dependencies
|
||||||
run: |-
|
run: |-
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
- name: Checkout UnrealIRCd
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
path: unrealircd
|
|
||||||
ref: unreal52
|
|
||||||
repository: unrealircd/unrealircd
|
|
||||||
- name: Build UnrealIRCd
|
|
||||||
run: |
|
|
||||||
cd $GITHUB_WORKSPACE/unrealircd/
|
|
||||||
cp $GITHUB_WORKSPACE/data/unreal/* .
|
|
||||||
CFLAGS=-O0 ./Config -quick
|
|
||||||
make -j 4
|
|
||||||
make install
|
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/unrealircd/bin:$PATH
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/.local/unrealircd/bin:$PATH
|
||||||
make unrealircd
|
make unrealircd
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results UnrealIRCd (devel)
|
name: pytest results unrealircd (devel)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-unrealircd-anope:
|
test-unrealircd-anope:
|
||||||
|
needs:
|
||||||
|
- build-unrealircd
|
||||||
|
- build-anope
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -301,52 +431,32 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Cache dependencies
|
- name: Download build artefacts
|
||||||
uses: actions/cache@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
key: ${{ runner.os }}-unrealircd-anope-devel
|
name: installed-unrealircd
|
||||||
path: |-
|
path: '~'
|
||||||
~/.cache
|
- name: Download build artefacts
|
||||||
$GITHUB_WORKSPACE/unrealircd
|
uses: actions/download-artifact@v2
|
||||||
- name: Install dependencies
|
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: |-
|
run: |-
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
- name: Checkout UnrealIRCd
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
path: unrealircd
|
|
||||||
ref: unreal52
|
|
||||||
repository: unrealircd/unrealircd
|
|
||||||
- name: Build UnrealIRCd
|
|
||||||
run: |
|
|
||||||
cd $GITHUB_WORKSPACE/unrealircd/
|
|
||||||
cp $GITHUB_WORKSPACE/data/unreal/* .
|
|
||||||
CFLAGS=-O0 ./Config -quick
|
|
||||||
make -j 4
|
|
||||||
make install
|
|
||||||
- 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: Test with pytest
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/unrealircd/bin:$PATH
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/.local/unrealircd/bin:$PATH make
|
||||||
make unrealircd-anope
|
unrealircd-anope
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results UnrealIRCd (devel)
|
name: pytest results anope (devel)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
name: irctest with devel versions
|
name: irctest with devel versions
|
||||||
'on':
|
'on':
|
||||||
|
410
.github/workflows/test-devel_release.yml
vendored
410
.github/workflows/test-devel_release.yml
vendored
@ -2,83 +2,12 @@
|
|||||||
# Do not edit it manually, modifications will be lost.
|
# Do not edit it manually, modifications will be lost.
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
publish-test-results:
|
build-anope:
|
||||||
if: success() || failure()
|
|
||||||
name: Publish Unit Tests Results
|
|
||||||
needs:
|
|
||||||
- test-inspircd
|
|
||||||
- test-inspircd-anope
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Download Artifacts
|
|
||||||
uses: actions/download-artifact@v2
|
|
||||||
with:
|
|
||||||
path: artifacts
|
|
||||||
- name: Publish Unit Test Results
|
|
||||||
uses: EnricoMi/publish-unit-test-result-action@v1
|
|
||||||
with:
|
|
||||||
files: artifacts/**/*.xml
|
|
||||||
test-inspircd:
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Set up Python 3.7
|
- name: Create directories
|
||||||
uses: actions/setup-python@v2
|
run: cd ~/; mkdir -p .local/ go/
|
||||||
with:
|
|
||||||
python-version: 3.7
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |-
|
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install pytest -r requirements.txt
|
|
||||||
- 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/inspircd_mainloop.patch
|
|
||||||
./configure --prefix=$HOME/.local/inspircd --development
|
|
||||||
make -j 4
|
|
||||||
make install
|
|
||||||
- name: Test with pytest
|
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.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:
|
|
||||||
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: Install dependencies
|
|
||||||
run: |-
|
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install pytest -r requirements.txt
|
|
||||||
- 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/inspircd_mainloop.patch
|
|
||||||
./configure --prefix=$HOME/.local/inspircd --development
|
|
||||||
make -j 4
|
|
||||||
make install
|
|
||||||
- name: Checkout Anope
|
- name: Checkout Anope
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
@ -92,14 +21,343 @@ jobs:
|
|||||||
CFLAGS=-O0 ./Config -quick
|
CFLAGS=-O0 ./Config -quick
|
||||||
make -C build -j 4
|
make -C build -j 4
|
||||||
make -C build install
|
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/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-charybdis
|
||||||
|
- test-solanum
|
||||||
|
- test-ergo
|
||||||
|
- test-inspircd
|
||||||
|
- test-inspircd-anope
|
||||||
|
- test-unrealircd
|
||||||
|
- test-unrealircd-anope
|
||||||
|
- test-limnoria
|
||||||
|
- test-sopel
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Download Artifacts
|
||||||
|
uses: actions/download-artifact@v2
|
||||||
|
with:
|
||||||
|
path: artifacts
|
||||||
|
- name: Publish Unit Test Results
|
||||||
|
uses: EnricoMi/publish-unit-test-result-action@v1
|
||||||
|
with:
|
||||||
|
files: artifacts/**/*.xml
|
||||||
|
test-charybdis:
|
||||||
|
needs:
|
||||||
|
- build-charybdis
|
||||||
|
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-charybdis
|
||||||
|
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
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/inspircd/bin:$PATH make
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
|
||||||
|
charybdis
|
||||||
|
- if: always()
|
||||||
|
name: Publish results
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: pytest results charybdis (devel_release)
|
||||||
|
path: pytest.xml
|
||||||
|
test-ergo:
|
||||||
|
needs: []
|
||||||
|
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: 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 PATH=~/go/bin:$PATH
|
||||||
|
make ergo
|
||||||
|
- if: always()
|
||||||
|
name: Publish results
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: pytest results ergo (devel_release)
|
||||||
|
path: pytest.xml
|
||||||
|
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 -r requirements.txt
|
||||||
|
- name: Test with pytest
|
||||||
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/.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 -r requirements.txt
|
||||||
|
- name: Test with pytest
|
||||||
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/.local/inspircd/bin:$PATH make
|
||||||
inspircd-anope
|
inspircd-anope
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results InspIRCd (devel_release)
|
name: pytest results anope (devel_release)
|
||||||
|
path: pytest.xml
|
||||||
|
test-limnoria:
|
||||||
|
needs: []
|
||||||
|
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: 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
|
||||||
|
limnoria
|
||||||
|
- if: always()
|
||||||
|
name: Publish results
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: pytest results limnoria (devel_release)
|
||||||
|
path: pytest.xml
|
||||||
|
test-solanum:
|
||||||
|
needs:
|
||||||
|
- build-solanum
|
||||||
|
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-solanum
|
||||||
|
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
|
||||||
|
solanum
|
||||||
|
- if: always()
|
||||||
|
name: Publish results
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: pytest results solanum (devel_release)
|
||||||
|
path: pytest.xml
|
||||||
|
test-sopel:
|
||||||
|
needs: []
|
||||||
|
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: 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
|
||||||
|
sopel
|
||||||
|
- if: always()
|
||||||
|
name: Publish results
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: pytest results sopel (devel_release)
|
||||||
|
path: pytest.xml
|
||||||
|
test-unrealircd:
|
||||||
|
needs:
|
||||||
|
- build-unrealircd
|
||||||
|
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-unrealircd
|
||||||
|
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 PATH=~/.local/unrealircd/bin:$PATH
|
||||||
|
make unrealircd
|
||||||
|
- if: always()
|
||||||
|
name: Publish results
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: pytest results unrealircd (devel_release)
|
||||||
|
path: pytest.xml
|
||||||
|
test-unrealircd-anope:
|
||||||
|
needs:
|
||||||
|
- build-unrealircd
|
||||||
|
- 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-unrealircd
|
||||||
|
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 PATH=~/.local/unrealircd/bin:$PATH make
|
||||||
|
unrealircd-anope
|
||||||
|
- if: always()
|
||||||
|
name: Publish results
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: pytest results anope (devel_release)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
name: irctest with devel_release versions
|
name: irctest with devel_release versions
|
||||||
'on':
|
'on':
|
||||||
|
506
.github/workflows/test-stable.yml
vendored
506
.github/workflows/test-stable.yml
vendored
@ -2,6 +2,182 @@
|
|||||||
# Do not edit it manually, modifications will be lost.
|
# Do not edit it manually, modifications will be lost.
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
build-anope:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Create directories
|
||||||
|
run: cd ~/; mkdir -p .local/ go/
|
||||||
|
- 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-charybdis:
|
||||||
|
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 }}-charybdis-stable
|
||||||
|
path: |-
|
||||||
|
~/.cache
|
||||||
|
$GITHUB_WORKSPACE/charybdis
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Python 3.7
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: 3.7
|
||||||
|
- name: Checkout Charybdis
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: charybdis
|
||||||
|
ref: charybdis-4.1.2
|
||||||
|
repository: charybdis-ircd/charybdis
|
||||||
|
- name: Build Charybdis
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/charybdis/
|
||||||
|
./autogen.sh
|
||||||
|
./configure --prefix=$HOME/.local/
|
||||||
|
make -j 4
|
||||||
|
make install
|
||||||
|
- name: Make artefact tarball
|
||||||
|
run: cd ~; tar -czf artefacts-charybdis.tar.gz .local/ go/
|
||||||
|
- name: Upload build artefacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: installed-charybdis
|
||||||
|
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: v3.10.0
|
||||||
|
repository: inspircd/inspircd
|
||||||
|
- name: Build InspIRCd
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/inspircd/
|
||||||
|
patch src/inspircd.cpp < $GITHUB_WORKSPACE/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
|
||||||
|
build-solanum:
|
||||||
|
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 }}-solanum-stable
|
||||||
|
path: |-
|
||||||
|
~/.cache
|
||||||
|
$GITHUB_WORKSPACE/solanum
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Python 3.7
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: 3.7
|
||||||
|
- name: Checkout Solanum
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: solanum
|
||||||
|
ref: e370888264da666a1bd9faac86cd5f2aa06084f4
|
||||||
|
repository: solanum-ircd/solanum
|
||||||
|
- name: Build Solanum
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/solanum/
|
||||||
|
./autogen.sh
|
||||||
|
./configure --prefix=$HOME/.local/
|
||||||
|
make -j 4
|
||||||
|
make install
|
||||||
|
- name: Make artefact tarball
|
||||||
|
run: cd ~; tar -czf artefacts-solanum.tar.gz .local/ go/
|
||||||
|
- name: Upload build artefacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: installed-solanum
|
||||||
|
path: ~/artefacts-*.tar.gz
|
||||||
|
retention-days: 1
|
||||||
|
build-unrealircd:
|
||||||
|
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 }}-unrealircd-stable
|
||||||
|
path: |-
|
||||||
|
~/.cache
|
||||||
|
$GITHUB_WORKSPACE/unrealircd
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Python 3.7
|
||||||
|
uses: actions/setup-python@v2
|
||||||
|
with:
|
||||||
|
python-version: 3.7
|
||||||
|
- name: Checkout UnrealIRCd
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: unrealircd
|
||||||
|
ref: 94993a03ca8d3c193c0295c33af39270c3f9d27d
|
||||||
|
repository: unrealircd/unrealircd
|
||||||
|
- name: Build UnrealIRCd
|
||||||
|
run: |
|
||||||
|
cd $GITHUB_WORKSPACE/unrealircd/
|
||||||
|
cp $GITHUB_WORKSPACE/data/unreal/* .
|
||||||
|
# Need to use a specific -march, because GitHub has inconsistent
|
||||||
|
# architectures across workers, which result in random SIGILL with some
|
||||||
|
# worker combinations
|
||||||
|
sudo apt install libsodium-dev libargon2-dev
|
||||||
|
CFLAGS="-O0 -march=x86-64" CXXFLAGS="$CFLAGS" ./Config -quick
|
||||||
|
make -j 4
|
||||||
|
make install
|
||||||
|
- name: Make artefact tarball
|
||||||
|
run: cd ~; tar -czf artefacts-unrealircd.tar.gz .local/ go/
|
||||||
|
- name: Upload build artefacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: installed-unrealircd
|
||||||
|
path: ~/artefacts-*.tar.gz
|
||||||
|
retention-days: 1
|
||||||
publish-test-results:
|
publish-test-results:
|
||||||
if: success() || failure()
|
if: success() || failure()
|
||||||
name: Publish Unit Tests Results
|
name: Publish Unit Tests Results
|
||||||
@ -26,6 +202,8 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
files: artifacts/**/*.xml
|
files: artifacts/**/*.xml
|
||||||
test-charybdis:
|
test-charybdis:
|
||||||
|
needs:
|
||||||
|
- build-charybdis
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -33,40 +211,30 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Cache dependencies
|
- name: Download build artefacts
|
||||||
uses: actions/cache@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
key: ${{ runner.os }}-charybdis-stable
|
name: installed-charybdis
|
||||||
path: |-
|
path: '~'
|
||||||
~/.cache
|
- name: Unpack artefacts
|
||||||
$GITHUB_WORKSPACE/charybdis
|
run: cd ~; find -name 'artefacts-*.tar.gz' -exec tar -xzf '{}' \;
|
||||||
- name: Install dependencies
|
- name: Install Atheme
|
||||||
|
run: sudo apt-get install atheme-services
|
||||||
|
- name: Install irctest dependencies
|
||||||
run: |-
|
run: |-
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
- name: Checkout Charybdis
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
path: charybdis
|
|
||||||
ref: charybdis-4.1.2
|
|
||||||
repository: charybdis-ircd/charybdis
|
|
||||||
- name: Build Charybdis
|
|
||||||
run: |
|
|
||||||
cd $GITHUB_WORKSPACE/charybdis/
|
|
||||||
./autogen.sh
|
|
||||||
./configure --prefix=$HOME/.local/
|
|
||||||
make -j 4
|
|
||||||
make install
|
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/bin:$PATH make charybdis
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
|
||||||
|
charybdis
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results Charybdis (stable)
|
name: pytest results charybdis (stable)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-ergo:
|
test-ergo:
|
||||||
|
needs: []
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -74,42 +242,39 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- uses: actions/setup-go@v2
|
|
||||||
with:
|
|
||||||
go-version: ~1.16
|
|
||||||
- run: go version
|
|
||||||
- name: Cache dependencies
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
key: ${{ runner.os }}-ergo-stable
|
|
||||||
path: |-
|
|
||||||
~/.cache
|
|
||||||
$GITHUB_WORKSPACE/ergo
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |-
|
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install pytest -r requirements.txt
|
|
||||||
- name: Checkout Ergo
|
- name: Checkout Ergo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
path: ergo
|
path: ergo
|
||||||
ref: irctest_stable
|
ref: irctest_stable
|
||||||
repository: ergochat/ergo
|
repository: ergochat/ergo
|
||||||
|
- uses: actions/setup-go@v2
|
||||||
|
with:
|
||||||
|
go-version: ~1.16
|
||||||
|
- run: go version
|
||||||
- name: Build Ergo
|
- name: Build Ergo
|
||||||
run: |
|
run: |
|
||||||
cd $GITHUB_WORKSPACE/ergo/
|
cd $GITHUB_WORKSPACE/ergo/
|
||||||
make build
|
make build
|
||||||
make install
|
make install
|
||||||
|
- 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
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/go/bin:$PATH make ergo
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/go/bin:$PATH
|
||||||
|
make ergo
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results Ergo (stable)
|
name: pytest results ergo (stable)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-inspircd:
|
test-inspircd:
|
||||||
|
needs:
|
||||||
|
- build-inspircd
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -117,34 +282,32 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Install dependencies
|
- 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: |-
|
run: |-
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
- name: Checkout InspIRCd
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
path: inspircd
|
|
||||||
ref: v3.10.0
|
|
||||||
repository: inspircd/inspircd
|
|
||||||
- name: Build InspIRCd
|
|
||||||
run: |
|
|
||||||
cd $GITHUB_WORKSPACE/inspircd/
|
|
||||||
patch src/inspircd.cpp < $GITHUB_WORKSPACE/inspircd_mainloop.patch
|
|
||||||
./configure --prefix=$HOME/.local/inspircd --development
|
|
||||||
make -j 4
|
|
||||||
make install
|
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/inspircd/bin:$PATH make
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/.local/inspircd/bin:$PATH
|
||||||
inspircd
|
make inspircd
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results InspIRCd (stable)
|
name: pytest results inspircd (stable)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-inspircd-anope:
|
test-inspircd-anope:
|
||||||
|
needs:
|
||||||
|
- build-inspircd
|
||||||
|
- build-anope
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -152,47 +315,35 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Install dependencies
|
- 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: |-
|
run: |-
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
- name: Checkout InspIRCd
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
path: inspircd
|
|
||||||
ref: v3.10.0
|
|
||||||
repository: inspircd/inspircd
|
|
||||||
- name: Build InspIRCd
|
|
||||||
run: |
|
|
||||||
cd $GITHUB_WORKSPACE/inspircd/
|
|
||||||
patch src/inspircd.cpp < $GITHUB_WORKSPACE/inspircd_mainloop.patch
|
|
||||||
./configure --prefix=$HOME/.local/inspircd --development
|
|
||||||
make -j 4
|
|
||||||
make install
|
|
||||||
- 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: Test with pytest
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/inspircd/bin:$PATH make
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/.local/inspircd/bin:$PATH make
|
||||||
inspircd-anope
|
inspircd-anope
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results InspIRCd (stable)
|
name: pytest results anope (stable)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-limnoria:
|
test-limnoria:
|
||||||
|
needs: []
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -200,29 +351,26 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Cache dependencies
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
key: ${{ runner.os }}-limnoria-stable
|
|
||||||
path: |-
|
|
||||||
~/.cache
|
|
||||||
$GITHUB_WORKSPACE/placeholder
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |-
|
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install pytest -r requirements.txt
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install limnoria==2021.06.15 cryptography
|
run: pip install limnoria==2021.06.15 cryptography
|
||||||
|
- 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
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/bin:$PATH make limnoria
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
|
||||||
|
limnoria
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results Limnoria (stable)
|
name: pytest results limnoria (stable)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-solanum:
|
test-solanum:
|
||||||
|
needs:
|
||||||
|
- build-solanum
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -230,40 +378,30 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Cache dependencies
|
- name: Download build artefacts
|
||||||
uses: actions/cache@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
key: ${{ runner.os }}-solanum-stable
|
name: installed-solanum
|
||||||
path: |-
|
path: '~'
|
||||||
~/.cache
|
- name: Unpack artefacts
|
||||||
$GITHUB_WORKSPACE/solanum
|
run: cd ~; find -name 'artefacts-*.tar.gz' -exec tar -xzf '{}' \;
|
||||||
- name: Install dependencies
|
- name: Install Atheme
|
||||||
|
run: sudo apt-get install atheme-services
|
||||||
|
- name: Install irctest dependencies
|
||||||
run: |-
|
run: |-
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
- name: Checkout Solanum
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
path: solanum
|
|
||||||
ref: e370888264da666a1bd9faac86cd5f2aa06084f4
|
|
||||||
repository: solanum-ircd/solanum
|
|
||||||
- name: Build Solanum
|
|
||||||
run: |
|
|
||||||
cd $GITHUB_WORKSPACE/solanum/
|
|
||||||
./autogen.sh
|
|
||||||
./configure --prefix=$HOME/.local/
|
|
||||||
make -j 4
|
|
||||||
make install
|
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/bin:$PATH make solanum
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
|
||||||
|
solanum
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results Solanum (stable)
|
name: pytest results solanum (stable)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-sopel:
|
test-sopel:
|
||||||
|
needs: []
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -271,29 +409,26 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Cache dependencies
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
key: ${{ runner.os }}-sopel-stable
|
|
||||||
path: |-
|
|
||||||
~/.cache
|
|
||||||
$GITHUB_WORKSPACE/placeholder
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |-
|
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install pytest -r requirements.txt
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install sopel==7.1.1
|
run: pip install sopel==7.1.1
|
||||||
|
- 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
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/bin:$PATH make sopel
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
|
||||||
|
sopel
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results Sopel (stable)
|
name: pytest results sopel (stable)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-unrealircd:
|
test-unrealircd:
|
||||||
|
needs:
|
||||||
|
- build-unrealircd
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -301,41 +436,32 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Cache dependencies
|
- name: Download build artefacts
|
||||||
uses: actions/cache@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
key: ${{ runner.os }}-unrealircd-stable
|
name: installed-unrealircd
|
||||||
path: |-
|
path: '~'
|
||||||
~/.cache
|
- name: Unpack artefacts
|
||||||
$GITHUB_WORKSPACE/unrealircd
|
run: cd ~; find -name 'artefacts-*.tar.gz' -exec tar -xzf '{}' \;
|
||||||
- name: Install dependencies
|
- name: Install Atheme
|
||||||
|
run: sudo apt-get install atheme-services
|
||||||
|
- name: Install irctest dependencies
|
||||||
run: |-
|
run: |-
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
- name: Checkout UnrealIRCd
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
path: unrealircd
|
|
||||||
ref: 94993a03ca8d3c193c0295c33af39270c3f9d27d
|
|
||||||
repository: unrealircd/unrealircd
|
|
||||||
- name: Build UnrealIRCd
|
|
||||||
run: |
|
|
||||||
cd $GITHUB_WORKSPACE/unrealircd/
|
|
||||||
cp $GITHUB_WORKSPACE/data/unreal/* .
|
|
||||||
CFLAGS=-O0 ./Config -quick
|
|
||||||
make -j 4
|
|
||||||
make install
|
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/unrealircd/bin:$PATH
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/.local/unrealircd/bin:$PATH
|
||||||
make unrealircd
|
make unrealircd
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results UnrealIRCd (stable)
|
name: pytest results unrealircd (stable)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
test-unrealircd-anope:
|
test-unrealircd-anope:
|
||||||
|
needs:
|
||||||
|
- build-unrealircd
|
||||||
|
- build-anope
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -343,52 +469,32 @@ jobs:
|
|||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.7
|
python-version: 3.7
|
||||||
- name: Cache dependencies
|
- name: Download build artefacts
|
||||||
uses: actions/cache@v2
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
key: ${{ runner.os }}-unrealircd-anope-stable
|
name: installed-unrealircd
|
||||||
path: |-
|
path: '~'
|
||||||
~/.cache
|
- name: Download build artefacts
|
||||||
$GITHUB_WORKSPACE/unrealircd
|
uses: actions/download-artifact@v2
|
||||||
- name: Install dependencies
|
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: |-
|
run: |-
|
||||||
sudo apt-get install atheme-services
|
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
- name: Checkout UnrealIRCd
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
path: unrealircd
|
|
||||||
ref: 94993a03ca8d3c193c0295c33af39270c3f9d27d
|
|
||||||
repository: unrealircd/unrealircd
|
|
||||||
- name: Build UnrealIRCd
|
|
||||||
run: |
|
|
||||||
cd $GITHUB_WORKSPACE/unrealircd/
|
|
||||||
cp $GITHUB_WORKSPACE/data/unreal/* .
|
|
||||||
CFLAGS=-O0 ./Config -quick
|
|
||||||
make -j 4
|
|
||||||
make install
|
|
||||||
- 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: Test with pytest
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/unrealircd/bin:$PATH
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/.local/unrealircd/bin:$PATH make
|
||||||
make unrealircd-anope
|
unrealircd-anope
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: pytest results UnrealIRCd (stable)
|
name: pytest results anope (stable)
|
||||||
path: pytest.xml
|
path: pytest.xml
|
||||||
name: irctest with stable versions
|
name: irctest with stable versions
|
||||||
'on':
|
'on':
|
||||||
|
@ -169,11 +169,12 @@ class UnrealircdController(BaseServerController, DirectoryBasedController):
|
|||||||
self.proc = subprocess.Popen(
|
self.proc = subprocess.Popen(
|
||||||
[
|
[
|
||||||
"unrealircd",
|
"unrealircd",
|
||||||
|
"-t",
|
||||||
"-F", # BOOT_NOFORK
|
"-F", # BOOT_NOFORK
|
||||||
"-f",
|
"-f",
|
||||||
os.path.join(self.directory, "unrealircd.conf"),
|
os.path.join(self.directory, "unrealircd.conf"),
|
||||||
],
|
],
|
||||||
stdout=subprocess.DEVNULL,
|
# stdout=subprocess.DEVNULL,
|
||||||
)
|
)
|
||||||
|
|
||||||
if run_services:
|
if run_services:
|
||||||
|
@ -50,10 +50,8 @@ class VersionFlavor(enum.Enum):
|
|||||||
release series, it uses that branch instead"""
|
release series, it uses that branch instead"""
|
||||||
|
|
||||||
|
|
||||||
def get_build_job(*, software_config, software_id, version_flavor):
|
def get_install_steps(*, software_config, software_id, version_flavor):
|
||||||
name = software_config["name"]
|
name = software_config["name"]
|
||||||
prefix = software_config.get("prefix", "~/.local")
|
|
||||||
|
|
||||||
if "install_steps" in software_config:
|
if "install_steps" in software_config:
|
||||||
path = "placeholder" # TODO: remove this
|
path = "placeholder" # TODO: remove this
|
||||||
install_steps = software_config["install_steps"][version_flavor.value]
|
install_steps = software_config["install_steps"][version_flavor.value]
|
||||||
@ -74,40 +72,23 @@ def get_build_job(*, software_config, software_id, version_flavor):
|
|||||||
"path": path,
|
"path": path,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
*software_config.get("pre_deps", []),
|
||||||
{
|
{
|
||||||
"name": f"Build {name}",
|
"name": f"Build {name}",
|
||||||
"run": script(software_config["build_script"]),
|
"run": script(software_config["build_script"]),
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
if software_config.get("build_anope", False):
|
return install_steps
|
||||||
install_steps.append(
|
|
||||||
{
|
|
||||||
"name": "Checkout Anope",
|
|
||||||
"uses": "actions/checkout@v2",
|
|
||||||
"with": {
|
|
||||||
"repository": "anope/anope",
|
|
||||||
"ref": "2.0.9",
|
|
||||||
"path": "anope",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
install_steps.append(
|
|
||||||
{
|
|
||||||
"name": "Build Anope",
|
|
||||||
"run": script(
|
|
||||||
"cd $GITHUB_WORKSPACE/anope/",
|
|
||||||
"cp $GITHUB_WORKSPACE/data/anope/* .",
|
|
||||||
"CFLAGS=-O0 ./Config -quick",
|
|
||||||
"make -C build -j 4",
|
|
||||||
"make -C build install",
|
|
||||||
),
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
env = software_config.get("env", {}).get(version_flavor.value, "")
|
|
||||||
if env:
|
def get_build_job(*, software_config, software_id, version_flavor):
|
||||||
env += " "
|
if not software_config["separate_build_job"]:
|
||||||
|
return None
|
||||||
|
if "install_steps" in software_config:
|
||||||
|
path = "placeholder" # TODO: remove this
|
||||||
|
else:
|
||||||
|
path = software_config["path"]
|
||||||
|
|
||||||
if software_config.get("cache", True):
|
if software_config.get("cache", True):
|
||||||
cache = [
|
cache = [
|
||||||
@ -126,21 +107,100 @@ def get_build_job(*, software_config, software_id, version_flavor):
|
|||||||
else:
|
else:
|
||||||
cache = []
|
cache = []
|
||||||
|
|
||||||
|
install_steps = get_install_steps(
|
||||||
|
software_config=software_config,
|
||||||
|
software_id=software_id,
|
||||||
|
version_flavor=version_flavor,
|
||||||
|
)
|
||||||
|
if install_steps is None:
|
||||||
|
return None
|
||||||
|
|
||||||
return {
|
return {
|
||||||
"runs-on": "ubuntu-latest",
|
"runs-on": "ubuntu-latest",
|
||||||
"steps": [
|
"steps": [
|
||||||
|
{
|
||||||
|
"name": "Create directories",
|
||||||
|
"run": "cd ~/; mkdir -p .local/ go/",
|
||||||
|
},
|
||||||
|
*cache,
|
||||||
{"uses": "actions/checkout@v2"},
|
{"uses": "actions/checkout@v2"},
|
||||||
{
|
{
|
||||||
"name": "Set up Python 3.7", # for irctest itself
|
"name": "Set up Python 3.7",
|
||||||
"uses": "actions/setup-python@v2",
|
"uses": "actions/setup-python@v2",
|
||||||
"with": {"python-version": 3.7},
|
"with": {"python-version": 3.7},
|
||||||
},
|
},
|
||||||
*software_config.get("pre_deps", []),
|
*install_steps,
|
||||||
*cache,
|
*upload_steps(software_id),
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def get_test_job(*, config, test_config, test_id, version_flavor):
|
||||||
|
env = ""
|
||||||
|
needs = []
|
||||||
|
downloads = []
|
||||||
|
install_steps = []
|
||||||
|
for software_id in test_config.get("software", []):
|
||||||
|
if software_id == "anope":
|
||||||
|
# TODO: don't hardcode anope here
|
||||||
|
software_config = {"separate_build_job": True}
|
||||||
|
else:
|
||||||
|
software_config = config["software"][software_id]
|
||||||
|
|
||||||
|
env += software_config.get("env", {}).get(version_flavor.value, "") + " "
|
||||||
|
if "prefix" in software_config:
|
||||||
|
env += f"PATH={software_config['prefix']}/bin:$PATH "
|
||||||
|
|
||||||
|
if software_config["separate_build_job"]:
|
||||||
|
needs.append(f"build-{software_id}")
|
||||||
|
downloads.append(
|
||||||
{
|
{
|
||||||
"name": "Install dependencies",
|
"name": "Download build artefacts",
|
||||||
|
"uses": "actions/download-artifact@v2",
|
||||||
|
"with": {"name": f"installed-{software_id}", "path": "~"},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
install_steps.extend(
|
||||||
|
get_install_steps(
|
||||||
|
software_config=software_config,
|
||||||
|
software_id=software_id,
|
||||||
|
version_flavor=version_flavor,
|
||||||
|
)
|
||||||
|
or []
|
||||||
|
)
|
||||||
|
|
||||||
|
if downloads:
|
||||||
|
unpack = [
|
||||||
|
{
|
||||||
|
"name": "Unpack artefacts",
|
||||||
|
"run": r"cd ~; find -name 'artefacts-*.tar.gz' -exec tar -xzf '{}' \;",
|
||||||
|
},
|
||||||
|
]
|
||||||
|
else:
|
||||||
|
# All the software is built in the same job, nothing to unpack
|
||||||
|
unpack = []
|
||||||
|
|
||||||
|
return {
|
||||||
|
"runs-on": "ubuntu-latest",
|
||||||
|
"needs": needs,
|
||||||
|
"steps": [
|
||||||
|
{"uses": "actions/checkout@v2"},
|
||||||
|
{
|
||||||
|
"name": "Set up Python 3.7",
|
||||||
|
"uses": "actions/setup-python@v2",
|
||||||
|
"with": {"python-version": 3.7},
|
||||||
|
},
|
||||||
|
*downloads,
|
||||||
|
*unpack,
|
||||||
|
*install_steps,
|
||||||
|
{
|
||||||
|
"name": "Install Atheme",
|
||||||
|
"run": "sudo apt-get install atheme-services",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Install irctest dependencies",
|
||||||
"run": script(
|
"run": script(
|
||||||
"sudo apt-get install atheme-services",
|
|
||||||
"python -m pip install --upgrade pip",
|
"python -m pip install --upgrade pip",
|
||||||
"pip install pytest -r requirements.txt",
|
"pip install pytest -r requirements.txt",
|
||||||
*(
|
*(
|
||||||
@ -150,13 +210,12 @@ def get_build_job(*, software_config, software_id, version_flavor):
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
*install_steps,
|
|
||||||
{
|
{
|
||||||
"name": "Test with pytest",
|
"name": "Test with pytest",
|
||||||
"run": (
|
"run": (
|
||||||
f"PYTEST_ARGS='--junit-xml pytest.xml' "
|
f"PYTEST_ARGS='--junit-xml pytest.xml' "
|
||||||
f"PATH={prefix}/bin:$PATH "
|
f"PATH=$HOME/.local/bin:$PATH "
|
||||||
f"{env}make {software_id}"
|
f"{env}make {test_id}"
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -164,7 +223,7 @@ def get_build_job(*, software_config, software_id, version_flavor):
|
|||||||
"if": "always()",
|
"if": "always()",
|
||||||
"uses": "actions/upload-artifact@v2",
|
"uses": "actions/upload-artifact@v2",
|
||||||
"with": {
|
"with": {
|
||||||
"name": f"pytest results {name} ({version_flavor.value})",
|
"name": f"pytest results {software_id} ({version_flavor.value})",
|
||||||
"path": "pytest.xml",
|
"path": "pytest.xml",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -172,6 +231,60 @@ def get_build_job(*, software_config, software_id, version_flavor):
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def get_build_job_anope():
|
||||||
|
return {
|
||||||
|
"runs-on": "ubuntu-latest",
|
||||||
|
"steps": [
|
||||||
|
{"uses": "actions/checkout@v2"},
|
||||||
|
{
|
||||||
|
"name": "Create directories",
|
||||||
|
"run": "cd ~/; mkdir -p .local/ go/",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Checkout Anope",
|
||||||
|
"uses": "actions/checkout@v2",
|
||||||
|
"with": {
|
||||||
|
"repository": "anope/anope",
|
||||||
|
"ref": "2.0.9",
|
||||||
|
"path": "anope",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Build Anope",
|
||||||
|
"run": script(
|
||||||
|
"cd $GITHUB_WORKSPACE/anope/",
|
||||||
|
"cp $GITHUB_WORKSPACE/data/anope/* .",
|
||||||
|
"CFLAGS=-O0 ./Config -quick",
|
||||||
|
"make -C build -j 4",
|
||||||
|
"make -C build install",
|
||||||
|
),
|
||||||
|
},
|
||||||
|
*upload_steps("anope"),
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def upload_steps(software_id):
|
||||||
|
"""Make a tarball (to preserve permissions) and upload"""
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
"name": "Make artefact tarball",
|
||||||
|
"run": f"cd ~; tar -czf artefacts-{software_id}.tar.gz .local/ go/",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Upload build artefacts",
|
||||||
|
"uses": "actions/upload-artifact@v2",
|
||||||
|
"with": {
|
||||||
|
"name": f"installed-{software_id}",
|
||||||
|
"path": "~/artefacts-*.tar.gz",
|
||||||
|
# We only need it for the next step of the workflow, so let's
|
||||||
|
# just delete it ASAP to avoid wasting resources
|
||||||
|
"retention-days": 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
def generate_workflow(config: dict, version_flavor: VersionFlavor):
|
def generate_workflow(config: dict, version_flavor: VersionFlavor):
|
||||||
|
|
||||||
on: dict
|
on: dict
|
||||||
@ -191,19 +304,32 @@ def generate_workflow(config: dict, version_flavor: VersionFlavor):
|
|||||||
}
|
}
|
||||||
|
|
||||||
jobs = {}
|
jobs = {}
|
||||||
|
|
||||||
for software_id in config["software"]:
|
for software_id in config["software"]:
|
||||||
software_config = config["software"][software_id]
|
software_config = config["software"][software_id]
|
||||||
job = get_build_job(
|
build_job = get_build_job(
|
||||||
software_config=software_config,
|
software_config=software_config,
|
||||||
software_id=software_id,
|
software_id=software_id,
|
||||||
version_flavor=version_flavor,
|
version_flavor=version_flavor,
|
||||||
)
|
)
|
||||||
if job is not None:
|
if build_job is not None:
|
||||||
jobs[f"test-{software_id}"] = job
|
jobs[f"build-{software_id}"] = build_job
|
||||||
|
|
||||||
|
for test_id in config["tests"]:
|
||||||
|
test_config = config["tests"][test_id]
|
||||||
|
test_job = get_test_job(
|
||||||
|
config=config,
|
||||||
|
test_config=test_config,
|
||||||
|
test_id=test_id,
|
||||||
|
version_flavor=version_flavor,
|
||||||
|
)
|
||||||
|
if test_job is not None:
|
||||||
|
jobs[f"test-{test_id}"] = test_job
|
||||||
|
|
||||||
|
jobs["build-anope"] = get_build_job_anope()
|
||||||
jobs["publish-test-results"] = {
|
jobs["publish-test-results"] = {
|
||||||
"name": "Publish Unit Tests Results",
|
"name": "Publish Unit Tests Results",
|
||||||
"needs": list(jobs), # Depend on all other jobs
|
"needs": [f"test-{test_id}" for test_id in config["tests"]],
|
||||||
"runs-on": "ubuntu-latest",
|
"runs-on": "ubuntu-latest",
|
||||||
# the build-and-test job might be skipped, we don't need to run
|
# the build-and-test job might be skipped, we don't need to run
|
||||||
# this job then
|
# this job then
|
||||||
|
@ -15,6 +15,7 @@ software:
|
|||||||
devel: null
|
devel: null
|
||||||
devel_release: null
|
devel_release: null
|
||||||
path: charybdis
|
path: charybdis
|
||||||
|
separate_build_job: true
|
||||||
build_script: |
|
build_script: |
|
||||||
cd $GITHUB_WORKSPACE/charybdis/
|
cd $GITHUB_WORKSPACE/charybdis/
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
@ -33,6 +34,7 @@ software:
|
|||||||
devel: main
|
devel: main
|
||||||
devel_release: null
|
devel_release: null
|
||||||
path: solanum
|
path: solanum
|
||||||
|
separate_build_job: true
|
||||||
build_script: |
|
build_script: |
|
||||||
cd $GITHUB_WORKSPACE/solanum/
|
cd $GITHUB_WORKSPACE/solanum/
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
@ -57,6 +59,7 @@ software:
|
|||||||
with:
|
with:
|
||||||
go-version: '~1.16'
|
go-version: '~1.16'
|
||||||
- run: go version
|
- run: go version
|
||||||
|
separate_build_job: false
|
||||||
build_script: |
|
build_script: |
|
||||||
cd $GITHUB_WORKSPACE/ergo/
|
cd $GITHUB_WORKSPACE/ergo/
|
||||||
make build
|
make build
|
||||||
@ -76,6 +79,7 @@ software:
|
|||||||
path: inspircd
|
path: inspircd
|
||||||
prefix: ~/.local/inspircd
|
prefix: ~/.local/inspircd
|
||||||
cache: false # incremental compilation is frequently broken
|
cache: false # incremental compilation is frequently broken
|
||||||
|
separate_build_job: true
|
||||||
build_script: &inspircd_build_script |
|
build_script: &inspircd_build_script |
|
||||||
cd $GITHUB_WORKSPACE/inspircd/
|
cd $GITHUB_WORKSPACE/inspircd/
|
||||||
patch src/inspircd.cpp < $GITHUB_WORKSPACE/inspircd_mainloop.patch
|
patch src/inspircd.cpp < $GITHUB_WORKSPACE/inspircd_mainloop.patch
|
||||||
@ -83,16 +87,6 @@ software:
|
|||||||
make -j 4
|
make -j 4
|
||||||
make install
|
make install
|
||||||
|
|
||||||
inspircd-anope:
|
|
||||||
name: InspIRCd
|
|
||||||
repository: inspircd/inspircd
|
|
||||||
refs: *inspircd_refs
|
|
||||||
path: inspircd
|
|
||||||
prefix: ~/.local/inspircd
|
|
||||||
cache: false # incremental compilation is frequently broken
|
|
||||||
build_anope: true
|
|
||||||
build_script: *inspircd_build_script
|
|
||||||
|
|
||||||
unrealircd:
|
unrealircd:
|
||||||
name: UnrealIRCd
|
name: UnrealIRCd
|
||||||
repository: unrealircd/unrealircd
|
repository: unrealircd/unrealircd
|
||||||
@ -103,27 +97,24 @@ software:
|
|||||||
devel_release: null
|
devel_release: null
|
||||||
path: unrealircd
|
path: unrealircd
|
||||||
prefix: ~/.local/unrealircd
|
prefix: ~/.local/unrealircd
|
||||||
|
separate_build_job: true
|
||||||
build_script: &unrealircd_build_script |
|
build_script: &unrealircd_build_script |
|
||||||
cd $GITHUB_WORKSPACE/unrealircd/
|
cd $GITHUB_WORKSPACE/unrealircd/
|
||||||
cp $GITHUB_WORKSPACE/data/unreal/* .
|
cp $GITHUB_WORKSPACE/data/unreal/* .
|
||||||
CFLAGS=-O0 ./Config -quick
|
# Need to use a specific -march, because GitHub has inconsistent
|
||||||
|
# architectures across workers, which result in random SIGILL with some
|
||||||
|
# worker combinations
|
||||||
|
sudo apt install libsodium-dev libargon2-dev
|
||||||
|
CFLAGS="-O0 -march=x86-64" CXXFLAGS="$CFLAGS" ./Config -quick
|
||||||
make -j 4
|
make -j 4
|
||||||
make install
|
make install
|
||||||
|
|
||||||
unrealircd-anope:
|
|
||||||
name: UnrealIRCd
|
|
||||||
repository: unrealircd/unrealircd
|
|
||||||
refs: *unrealircd_refs
|
|
||||||
path: unrealircd
|
|
||||||
prefix: ~/.local/unrealircd
|
|
||||||
build_anope: true
|
|
||||||
build_script: *unrealircd_build_script
|
|
||||||
|
|
||||||
#############################
|
#############################
|
||||||
# Clients:
|
# Clients:
|
||||||
|
|
||||||
limnoria:
|
limnoria:
|
||||||
name: Limnoria
|
name: Limnoria
|
||||||
|
separate_build_job: false
|
||||||
install_steps:
|
install_steps:
|
||||||
stable:
|
stable:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
@ -138,6 +129,7 @@ software:
|
|||||||
|
|
||||||
sopel:
|
sopel:
|
||||||
name: Sopel
|
name: Sopel
|
||||||
|
separate_build_job: false
|
||||||
install_steps:
|
install_steps:
|
||||||
stable:
|
stable:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
@ -149,3 +141,31 @@ software:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install git+https://github.com/sopel-irc/sopel.git
|
run: pip install git+https://github.com/sopel-irc/sopel.git
|
||||||
devel_release: null
|
devel_release: null
|
||||||
|
|
||||||
|
tests:
|
||||||
|
charybdis:
|
||||||
|
software: [charybdis]
|
||||||
|
|
||||||
|
solanum:
|
||||||
|
software: [solanum]
|
||||||
|
|
||||||
|
ergo:
|
||||||
|
software: [ergo]
|
||||||
|
|
||||||
|
inspircd:
|
||||||
|
software: [inspircd]
|
||||||
|
|
||||||
|
inspircd-anope:
|
||||||
|
software: [inspircd, anope]
|
||||||
|
|
||||||
|
unrealircd:
|
||||||
|
software: [unrealircd]
|
||||||
|
|
||||||
|
unrealircd-anope:
|
||||||
|
software: [unrealircd, anope]
|
||||||
|
|
||||||
|
limnoria:
|
||||||
|
software: [limnoria]
|
||||||
|
|
||||||
|
sopel:
|
||||||
|
software: [sopel]
|
||||||
|
Reference in New Issue
Block a user