rename Oragono to Ergo

This commit is contained in:
Shivaram Lingamneni
2021-05-26 23:55:21 -04:00
parent 6bdfdf58b2
commit 7be29ad801
28 changed files with 87 additions and 88 deletions

View File

@ -49,5 +49,5 @@ jobs:
- name: Test with pytest
run: |
# testQuitErrors is very flaky
PATH=~/.local/bin:$PATH pytest --controller=irctest.controllers.charybdis -k 'not Oragono and not deprecated and not strict and not testDoubleKickMessages and not testQuitErrors'
PATH=~/.local/bin:$PATH pytest --controller=irctest.controllers.charybdis -k 'not Ergo and not deprecated and not strict and not testDoubleKickMessages and not testQuitErrors'

View File

@ -51,5 +51,5 @@ jobs:
# testNoticeNonexistentChannel fails because of https://github.com/inspircd/inspircd/issues/1849
# testDirectMessageEcho fails because of https://github.com/inspircd/inspircd/issues/1851
# testKeyValidation fails because of https://github.com/inspircd/inspircd/issues/1850
PATH=~/.local/bin:$PATH pytest --controller irctest.controllers.inspircd -k 'not Oragono and not deprecated and not strict and not testNoticeNonexistentChannel and not testDirectMessageEcho and not testKeyValidation'
PATH=~/.local/bin:$PATH pytest --controller irctest.controllers.inspircd -k 'not Ergo and not deprecated and not strict and not testNoticeNonexistentChannel and not testDirectMessageEcho and not testKeyValidation'

View File

@ -54,6 +54,6 @@ jobs:
# testPartMessage and testBasicPartRfc2812 fail because ircd-seven adds quotes around the message
# testListOne fails because ircd-seven makes channels secret by default
# testQuitErrors is very flaky
PATH=~/.local/bin:$PATH pytest --controller=irctest.controllers.ircd_seven -k 'not Oragono and not deprecated and not strict and not testDoubleKickMessages and not testNakWhole and not testPartMessage and not testBasicPartRfc2812 and not testListOne and not testQuitErrors'
PATH=~/.local/bin:$PATH pytest --controller=irctest.controllers.ircd_seven -k 'not Ergo and not deprecated and not strict and not testDoubleKickMessages and not testNakWhole and not testPartMessage and not testBasicPartRfc2812 and not testListOne and not testQuitErrors'

View File

@ -1,4 +1,4 @@
name: irctest with Oragono
name: irctest with Ergo
on:
push:
@ -28,27 +28,27 @@ jobs:
with:
path: |
~/.cache
$GITHUB_WORKSPACE/oragono
key: ${{ runner.os }}-oragono
$GITHUB_WORKSPACE/ergo
key: ${{ runner.os }}-ergo
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest -r requirements.txt
- name: Checkout Oragono
- name: Checkout Ergo
uses: actions/checkout@v2
with:
repository: oragono/oragono
repository: ergo/ergo
ref: irctest_stable
path: oragono
path: ergo
- name: Build Oragono
- name: Build Ergo
run: |
cd $GITHUB_WORKSPACE/oragono/
cd $GITHUB_WORKSPACE/ergo/
make build
make install
- name: Test with pytest
run: |
PATH=~/go/bin:$PATH pytest --controller=irctest.controllers.oragono -k 'not deprecated'
PATH=~/go/bin:$PATH pytest --controller=irctest.controllers.ergo -k 'not deprecated'

View File

@ -48,7 +48,7 @@ jobs:
- name: Test with pytest
run: |
PATH=~/.local/bin:$PATH pytest --controller=irctest.controllers.solanum -k 'not Oragono and not deprecated and not strict and not testDoubleKickMessages'
PATH=~/.local/bin:$PATH pytest --controller=irctest.controllers.solanum -k 'not Ergo and not deprecated and not strict and not testDoubleKickMessages'