mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
Merge branch 'master' into elist
This commit is contained in:
120
.github/deploy_to_netlify.py
vendored
Executable file
120
.github/deploy_to_netlify.py
vendored
Executable file
@ -0,0 +1,120 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import json
|
||||
import os
|
||||
import pprint
|
||||
import re
|
||||
import subprocess
|
||||
import sys
|
||||
import urllib.request
|
||||
|
||||
event_name = os.environ["GITHUB_EVENT_NAME"]
|
||||
|
||||
is_pull_request = is_push = False
|
||||
if event_name.startswith("pull_request"):
|
||||
is_pull_request = True
|
||||
elif event_name.startswith("push"):
|
||||
is_push = True
|
||||
elif event_name.startswith("schedule"):
|
||||
# Don't publish; scheduled workflows run against the latest commit of every
|
||||
# implementation, so they are likely to have failed tests for the wrong reasons
|
||||
sys.exit(0)
|
||||
else:
|
||||
print("Unexpected event name:", event_name)
|
||||
|
||||
with open(os.environ["GITHUB_EVENT_PATH"]) as fd:
|
||||
github_event = json.load(fd)
|
||||
|
||||
pprint.pprint(github_event)
|
||||
|
||||
context_suffix = ""
|
||||
|
||||
command = ["netlify", "deploy", "--dir=dashboard/"]
|
||||
if is_pull_request:
|
||||
pr_number = github_event["number"]
|
||||
sha = github_event["after"]
|
||||
# Aliases can't exceed 37 chars
|
||||
command.extend(["--alias", f"pr-{pr_number}-{sha[0:10]}"])
|
||||
context_suffix = " (pull_request)"
|
||||
elif is_push:
|
||||
ref = github_event["ref"]
|
||||
m = re.match("refs/heads/(.*)", ref)
|
||||
if m:
|
||||
branch = m.group(1)
|
||||
sha = github_event["head_commit"]["id"]
|
||||
|
||||
if branch in ("main", "master"):
|
||||
command.extend(["--prod"])
|
||||
else:
|
||||
command.extend(["--alias", f"br-{branch[0:23]}-{sha[0:10]}"])
|
||||
context_suffix = " (push)"
|
||||
else:
|
||||
# TODO
|
||||
pass
|
||||
|
||||
|
||||
print("Running", command)
|
||||
proc = subprocess.run(command, capture_output=True)
|
||||
|
||||
output = proc.stdout.decode()
|
||||
assert proc.returncode == 0, (output, proc.stderr.decode())
|
||||
print(output)
|
||||
|
||||
m = re.search("https://[^ ]*--[^ ]*netlify.app", output)
|
||||
assert m
|
||||
netlify_site_url = m.group(0)
|
||||
target_url = f"{netlify_site_url}/index.xhtml"
|
||||
|
||||
print("Published to", netlify_site_url)
|
||||
|
||||
|
||||
def send_status() -> None:
|
||||
statuses_url = github_event["repository"]["statuses_url"].format(sha=sha)
|
||||
|
||||
payload = {
|
||||
"state": "success",
|
||||
"context": f"Dashboard{context_suffix}",
|
||||
"description": "Table of all test results",
|
||||
"target_url": target_url,
|
||||
}
|
||||
request = urllib.request.Request(
|
||||
statuses_url,
|
||||
data=json.dumps(payload).encode(),
|
||||
headers={
|
||||
"Authorization": f'token {os.environ["GITHUB_TOKEN"]}',
|
||||
"Content-Type": "text/json",
|
||||
"Accept": "application/vnd.github+json",
|
||||
},
|
||||
)
|
||||
|
||||
response = urllib.request.urlopen(request)
|
||||
|
||||
assert response.status == 201, response.read()
|
||||
|
||||
|
||||
send_status()
|
||||
|
||||
|
||||
def send_pr_comment() -> None:
|
||||
comments_url = github_event["pull_request"]["_links"]["comments"]["href"]
|
||||
|
||||
payload = {
|
||||
"body": f"[Test results]({target_url})",
|
||||
}
|
||||
request = urllib.request.Request(
|
||||
comments_url,
|
||||
data=json.dumps(payload).encode(),
|
||||
headers={
|
||||
"Authorization": f'token {os.environ["GITHUB_TOKEN"]}',
|
||||
"Content-Type": "text/json",
|
||||
"Accept": "application/vnd.github+json",
|
||||
},
|
||||
)
|
||||
|
||||
response = urllib.request.urlopen(request)
|
||||
|
||||
assert response.status == 201, response.read()
|
||||
|
||||
|
||||
if is_pull_request:
|
||||
send_pr_comment()
|
118
.github/workflows/test-devel.yml
vendored
118
.github/workflows/test-devel.yml
vendored
@ -369,7 +369,7 @@ jobs:
|
||||
retention-days: 1
|
||||
publish-test-results:
|
||||
if: success() || failure()
|
||||
name: Publish Unit Tests Results
|
||||
name: Publish Dashboard
|
||||
needs:
|
||||
- test-bahamut
|
||||
- test-bahamut-anope
|
||||
@ -380,6 +380,7 @@ jobs:
|
||||
- test-inspircd-anope
|
||||
- test-ircu2
|
||||
- test-limnoria
|
||||
- test-nefarious
|
||||
- test-ngircd
|
||||
- test-ngircd-anope
|
||||
- test-ngircd-atheme
|
||||
@ -397,27 +398,23 @@ jobs:
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
path: artifacts
|
||||
- if: github.event_name == 'pull_request'
|
||||
name: Publish Unit Test Results
|
||||
uses: actions/github-script@v4
|
||||
with:
|
||||
result-encoding: string
|
||||
script: |
|
||||
let body = '';
|
||||
const options = {};
|
||||
options.listeners = {
|
||||
stdout: (data) => {
|
||||
body += data.toString();
|
||||
}
|
||||
};
|
||||
await exec.exec('bash', ['-c', 'shopt -s globstar; python3 report.py artifacts/**/*.xml'], options);
|
||||
github.issues.createComment({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
body: body,
|
||||
});
|
||||
return body;
|
||||
- name: Install dashboard dependencies
|
||||
run: |-
|
||||
python -m pip install --upgrade pip
|
||||
pip install defusedxml docutils -r requirements.txt
|
||||
- name: Generate dashboard
|
||||
run: |-
|
||||
shopt -s globstar
|
||||
python3 -m irctest.dashboard.format dashboard/ artifacts/**/*.xml
|
||||
echo '/ /index.xhtml' > dashboard/_redirects
|
||||
- name: Install netlify-cli
|
||||
run: npm i -g netlify-cli
|
||||
- env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
||||
name: Deploy to Netlify
|
||||
run: ./.github/deploy_to_netlify.py
|
||||
test-bahamut:
|
||||
needs:
|
||||
- build-bahamut
|
||||
@ -448,7 +445,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results bahamut (devel)
|
||||
name: pytest-results_bahamut_devel
|
||||
path: pytest.xml
|
||||
test-bahamut-anope:
|
||||
needs:
|
||||
@ -486,7 +483,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results bahamut-anope (devel)
|
||||
name: pytest-results_bahamut-anope_devel
|
||||
path: pytest.xml
|
||||
test-bahamut-atheme:
|
||||
needs:
|
||||
@ -518,7 +515,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results bahamut-atheme (devel)
|
||||
name: pytest-results_bahamut-atheme_devel
|
||||
path: pytest.xml
|
||||
test-ergo:
|
||||
needs: []
|
||||
@ -537,7 +534,7 @@ jobs:
|
||||
repository: ergochat/ergo
|
||||
- uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ^1.17.0
|
||||
go-version: ^1.18.0
|
||||
- run: go version
|
||||
- name: Build Ergo
|
||||
run: |
|
||||
@ -557,7 +554,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results ergo (devel)
|
||||
name: pytest-results_ergo_devel
|
||||
path: pytest.xml
|
||||
test-hybrid:
|
||||
needs:
|
||||
@ -595,7 +592,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results hybrid (devel)
|
||||
name: pytest-results_hybrid_devel
|
||||
path: pytest.xml
|
||||
test-inspircd:
|
||||
needs:
|
||||
@ -627,7 +624,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results inspircd (devel)
|
||||
name: pytest-results_inspircd_devel
|
||||
path: pytest.xml
|
||||
test-inspircd-anope:
|
||||
needs:
|
||||
@ -665,7 +662,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results inspircd-anope (devel)
|
||||
name: pytest-results_inspircd-anope_devel
|
||||
path: pytest.xml
|
||||
test-ircu2:
|
||||
needs: []
|
||||
@ -703,7 +700,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results ircu2 (devel)
|
||||
name: pytest-results_ircu2_devel
|
||||
path: pytest.xml
|
||||
test-limnoria:
|
||||
needs: []
|
||||
@ -730,7 +727,44 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results limnoria (devel)
|
||||
name: pytest-results_limnoria_devel
|
||||
path: pytest.xml
|
||||
test-nefarious:
|
||||
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 nefarious
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: nefarious
|
||||
ref: master
|
||||
repository: evilnet/nefarious2
|
||||
- name: Build nefarious
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE/nefarious
|
||||
./configure --prefix=$HOME/.local/ --enable-debug
|
||||
make -j 4
|
||||
make install
|
||||
cp $GITHUB_WORKSPACE/data/nefarious/* $HOME/.local/lib
|
||||
- name: Install Atheme
|
||||
run: sudo apt-get install atheme-services
|
||||
- name: Install irctest dependencies
|
||||
run: |-
|
||||
python -m pip install --upgrade pip
|
||||
pip install pytest pytest-xdist -r requirements.txt
|
||||
- name: Test with pytest
|
||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
|
||||
nefarious
|
||||
- if: always()
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest-results_nefarious_devel
|
||||
path: pytest.xml
|
||||
test-ngircd:
|
||||
needs:
|
||||
@ -762,7 +796,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results ngircd (devel)
|
||||
name: pytest-results_ngircd_devel
|
||||
path: pytest.xml
|
||||
test-ngircd-anope:
|
||||
needs:
|
||||
@ -800,7 +834,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results ngircd-anope (devel)
|
||||
name: pytest-results_ngircd-anope_devel
|
||||
path: pytest.xml
|
||||
test-ngircd-atheme:
|
||||
needs:
|
||||
@ -832,7 +866,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results ngircd-atheme (devel)
|
||||
name: pytest-results_ngircd-atheme_devel
|
||||
path: pytest.xml
|
||||
test-plexus4:
|
||||
needs:
|
||||
@ -870,7 +904,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results plexus4 (devel)
|
||||
name: pytest-results_plexus4_devel
|
||||
path: pytest.xml
|
||||
test-solanum:
|
||||
needs:
|
||||
@ -902,7 +936,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results solanum (devel)
|
||||
name: pytest-results_solanum_devel
|
||||
path: pytest.xml
|
||||
test-sopel:
|
||||
needs: []
|
||||
@ -928,7 +962,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results sopel (devel)
|
||||
name: pytest-results_sopel_devel
|
||||
path: pytest.xml
|
||||
test-unrealircd:
|
||||
needs:
|
||||
@ -960,7 +994,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results unrealircd (devel)
|
||||
name: pytest-results_unrealircd_devel
|
||||
path: pytest.xml
|
||||
test-unrealircd-5:
|
||||
needs:
|
||||
@ -992,7 +1026,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results unrealircd-5 (devel)
|
||||
name: pytest-results_unrealircd-5_devel
|
||||
path: pytest.xml
|
||||
test-unrealircd-anope:
|
||||
needs:
|
||||
@ -1030,7 +1064,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results unrealircd-anope (devel)
|
||||
name: pytest-results_unrealircd-anope_devel
|
||||
path: pytest.xml
|
||||
test-unrealircd-atheme:
|
||||
needs:
|
||||
@ -1062,7 +1096,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results unrealircd-atheme (devel)
|
||||
name: pytest-results_unrealircd-atheme_devel
|
||||
path: pytest.xml
|
||||
name: irctest with devel versions
|
||||
'on':
|
||||
|
46
.github/workflows/test-devel_release.yml
vendored
46
.github/workflows/test-devel_release.yml
vendored
@ -71,7 +71,7 @@ jobs:
|
||||
retention-days: 1
|
||||
publish-test-results:
|
||||
if: success() || failure()
|
||||
name: Publish Unit Tests Results
|
||||
name: Publish Dashboard
|
||||
needs:
|
||||
- test-inspircd
|
||||
- test-inspircd-anope
|
||||
@ -83,27 +83,23 @@ jobs:
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
path: artifacts
|
||||
- if: github.event_name == 'pull_request'
|
||||
name: Publish Unit Test Results
|
||||
uses: actions/github-script@v4
|
||||
with:
|
||||
result-encoding: string
|
||||
script: |
|
||||
let body = '';
|
||||
const options = {};
|
||||
options.listeners = {
|
||||
stdout: (data) => {
|
||||
body += data.toString();
|
||||
}
|
||||
};
|
||||
await exec.exec('bash', ['-c', 'shopt -s globstar; python3 report.py artifacts/**/*.xml'], options);
|
||||
github.issues.createComment({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
body: body,
|
||||
});
|
||||
return body;
|
||||
- name: Install dashboard dependencies
|
||||
run: |-
|
||||
python -m pip install --upgrade pip
|
||||
pip install defusedxml docutils -r requirements.txt
|
||||
- name: Generate dashboard
|
||||
run: |-
|
||||
shopt -s globstar
|
||||
python3 -m irctest.dashboard.format dashboard/ artifacts/**/*.xml
|
||||
echo '/ /index.xhtml' > dashboard/_redirects
|
||||
- name: Install netlify-cli
|
||||
run: npm i -g netlify-cli
|
||||
- env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
||||
name: Deploy to Netlify
|
||||
run: ./.github/deploy_to_netlify.py
|
||||
test-inspircd:
|
||||
needs:
|
||||
- build-inspircd
|
||||
@ -134,7 +130,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results inspircd (devel_release)
|
||||
name: pytest-results_inspircd_devel_release
|
||||
path: pytest.xml
|
||||
test-inspircd-anope:
|
||||
needs:
|
||||
@ -172,7 +168,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results inspircd-anope (devel_release)
|
||||
name: pytest-results_inspircd-anope_devel_release
|
||||
path: pytest.xml
|
||||
test-inspircd-atheme:
|
||||
needs:
|
||||
@ -204,7 +200,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results inspircd-atheme (devel_release)
|
||||
name: pytest-results_inspircd-atheme_devel_release
|
||||
path: pytest.xml
|
||||
name: irctest with devel_release versions
|
||||
'on':
|
||||
|
124
.github/workflows/test-stable.yml
vendored
124
.github/workflows/test-stable.yml
vendored
@ -409,7 +409,7 @@ jobs:
|
||||
retention-days: 1
|
||||
publish-test-results:
|
||||
if: success() || failure()
|
||||
name: Publish Unit Tests Results
|
||||
name: Publish Dashboard
|
||||
needs:
|
||||
- test-bahamut
|
||||
- test-bahamut-anope
|
||||
@ -423,6 +423,7 @@ jobs:
|
||||
- test-irc2
|
||||
- test-ircu2
|
||||
- test-limnoria
|
||||
- test-nefarious
|
||||
- test-ngircd
|
||||
- test-ngircd-anope
|
||||
- test-ngircd-atheme
|
||||
@ -440,27 +441,23 @@ jobs:
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
path: artifacts
|
||||
- if: github.event_name == 'pull_request'
|
||||
name: Publish Unit Test Results
|
||||
uses: actions/github-script@v4
|
||||
with:
|
||||
result-encoding: string
|
||||
script: |
|
||||
let body = '';
|
||||
const options = {};
|
||||
options.listeners = {
|
||||
stdout: (data) => {
|
||||
body += data.toString();
|
||||
}
|
||||
};
|
||||
await exec.exec('bash', ['-c', 'shopt -s globstar; python3 report.py artifacts/**/*.xml'], options);
|
||||
github.issues.createComment({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
body: body,
|
||||
});
|
||||
return body;
|
||||
- name: Install dashboard dependencies
|
||||
run: |-
|
||||
python -m pip install --upgrade pip
|
||||
pip install defusedxml docutils -r requirements.txt
|
||||
- name: Generate dashboard
|
||||
run: |-
|
||||
shopt -s globstar
|
||||
python3 -m irctest.dashboard.format dashboard/ artifacts/**/*.xml
|
||||
echo '/ /index.xhtml' > dashboard/_redirects
|
||||
- name: Install netlify-cli
|
||||
run: npm i -g netlify-cli
|
||||
- env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
||||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
||||
name: Deploy to Netlify
|
||||
run: ./.github/deploy_to_netlify.py
|
||||
test-bahamut:
|
||||
needs:
|
||||
- build-bahamut
|
||||
@ -491,7 +488,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results bahamut (stable)
|
||||
name: pytest-results_bahamut_stable
|
||||
path: pytest.xml
|
||||
test-bahamut-anope:
|
||||
needs:
|
||||
@ -529,7 +526,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results bahamut-anope (stable)
|
||||
name: pytest-results_bahamut-anope_stable
|
||||
path: pytest.xml
|
||||
test-bahamut-atheme:
|
||||
needs:
|
||||
@ -561,7 +558,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results bahamut-atheme (stable)
|
||||
name: pytest-results_bahamut-atheme_stable
|
||||
path: pytest.xml
|
||||
test-charybdis:
|
||||
needs:
|
||||
@ -593,7 +590,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results charybdis (stable)
|
||||
name: pytest-results_charybdis_stable
|
||||
path: pytest.xml
|
||||
test-ergo:
|
||||
needs: []
|
||||
@ -612,7 +609,7 @@ jobs:
|
||||
repository: ergochat/ergo
|
||||
- uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ^1.17.0
|
||||
go-version: ^1.18.0
|
||||
- run: go version
|
||||
- name: Build Ergo
|
||||
run: |
|
||||
@ -632,7 +629,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results ergo (stable)
|
||||
name: pytest-results_ergo_stable
|
||||
path: pytest.xml
|
||||
test-hybrid:
|
||||
needs:
|
||||
@ -670,7 +667,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results hybrid (stable)
|
||||
name: pytest-results_hybrid_stable
|
||||
path: pytest.xml
|
||||
test-inspircd:
|
||||
needs:
|
||||
@ -702,7 +699,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results inspircd (stable)
|
||||
name: pytest-results_inspircd_stable
|
||||
path: pytest.xml
|
||||
test-inspircd-anope:
|
||||
needs:
|
||||
@ -740,7 +737,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results inspircd-anope (stable)
|
||||
name: pytest-results_inspircd-anope_stable
|
||||
path: pytest.xml
|
||||
test-inspircd-atheme:
|
||||
needs:
|
||||
@ -772,7 +769,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results inspircd-atheme (stable)
|
||||
name: pytest-results_inspircd-atheme_stable
|
||||
path: pytest.xml
|
||||
test-irc2:
|
||||
needs: []
|
||||
@ -826,7 +823,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results irc2 (stable)
|
||||
name: pytest-results_irc2_stable
|
||||
path: pytest.xml
|
||||
test-ircu2:
|
||||
needs: []
|
||||
@ -864,7 +861,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results ircu2 (stable)
|
||||
name: pytest-results_ircu2_stable
|
||||
path: pytest.xml
|
||||
test-limnoria:
|
||||
needs: []
|
||||
@ -890,7 +887,44 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results limnoria (stable)
|
||||
name: pytest-results_limnoria_stable
|
||||
path: pytest.xml
|
||||
test-nefarious:
|
||||
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 nefarious
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: nefarious
|
||||
ref: 985704168ecada12d9e53b46df6087ef9d9fb40b
|
||||
repository: evilnet/nefarious2
|
||||
- name: Build nefarious
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE/nefarious
|
||||
./configure --prefix=$HOME/.local/ --enable-debug
|
||||
make -j 4
|
||||
make install
|
||||
cp $GITHUB_WORKSPACE/data/nefarious/* $HOME/.local/lib
|
||||
- name: Install Atheme
|
||||
run: sudo apt-get install atheme-services
|
||||
- name: Install irctest dependencies
|
||||
run: |-
|
||||
python -m pip install --upgrade pip
|
||||
pip install pytest pytest-xdist -r requirements.txt
|
||||
- name: Test with pytest
|
||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
|
||||
nefarious
|
||||
- if: always()
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest-results_nefarious_stable
|
||||
path: pytest.xml
|
||||
test-ngircd:
|
||||
needs:
|
||||
@ -922,7 +956,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results ngircd (stable)
|
||||
name: pytest-results_ngircd_stable
|
||||
path: pytest.xml
|
||||
test-ngircd-anope:
|
||||
needs:
|
||||
@ -960,7 +994,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results ngircd-anope (stable)
|
||||
name: pytest-results_ngircd-anope_stable
|
||||
path: pytest.xml
|
||||
test-ngircd-atheme:
|
||||
needs:
|
||||
@ -992,7 +1026,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results ngircd-atheme (stable)
|
||||
name: pytest-results_ngircd-atheme_stable
|
||||
path: pytest.xml
|
||||
test-plexus4:
|
||||
needs:
|
||||
@ -1030,7 +1064,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results plexus4 (stable)
|
||||
name: pytest-results_plexus4_stable
|
||||
path: pytest.xml
|
||||
test-solanum:
|
||||
needs:
|
||||
@ -1062,7 +1096,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results solanum (stable)
|
||||
name: pytest-results_solanum_stable
|
||||
path: pytest.xml
|
||||
test-sopel:
|
||||
needs: []
|
||||
@ -1088,7 +1122,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results sopel (stable)
|
||||
name: pytest-results_sopel_stable
|
||||
path: pytest.xml
|
||||
test-unrealircd:
|
||||
needs:
|
||||
@ -1120,7 +1154,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results unrealircd (stable)
|
||||
name: pytest-results_unrealircd_stable
|
||||
path: pytest.xml
|
||||
test-unrealircd-5:
|
||||
needs:
|
||||
@ -1152,7 +1186,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results unrealircd-5 (stable)
|
||||
name: pytest-results_unrealircd-5_stable
|
||||
path: pytest.xml
|
||||
test-unrealircd-anope:
|
||||
needs:
|
||||
@ -1190,7 +1224,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results unrealircd-anope (stable)
|
||||
name: pytest-results_unrealircd-anope_stable
|
||||
path: pytest.xml
|
||||
test-unrealircd-atheme:
|
||||
needs:
|
||||
@ -1222,7 +1256,7 @@ jobs:
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: pytest results unrealircd-atheme (stable)
|
||||
name: pytest-results_unrealircd-atheme_stable
|
||||
path: pytest.xml
|
||||
name: irctest with stable versions
|
||||
'on':
|
||||
|
Reference in New Issue
Block a user