From 78c4f3bd97d003d0f528d98752e0528023b27045 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 28 Jun 2024 10:13:49 +0100 Subject: Tell people to use the main ChatSpike domain not our alias. Backport from master. --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 2 +- .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 2 +- .github/SECURITY.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md index e299326fb..2a5e9cb09 100644 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -12,7 +12,7 @@ The GitHub issue tracker is for bug reports ONLY. General support can be found a Discussions: https://github.com/inspircd/inspircd/discussions Docs: https://docs.inspircd.org -IRC: irc.inspircd.org #inspircd +IRC: irc.chatspike.net #inspircd Example configs: https://github.com/inspircd/inspircd/tree/insp3/docs/conf --> diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md index 12109cc5d..34598fff0 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md @@ -10,7 +10,7 @@ The GitHub issue tracker is for feature requests ONLY. General support can be fo Discussions: https://github.com/inspircd/inspircd/discussions Docs: https://docs.inspircd.org -IRC: irc.inspircd.org #inspircd +IRC: irc.chatspike.net #inspircd Example configs: https://github.com/inspircd/inspircd/tree/insp3/docs/conf --> diff --git a/.github/SECURITY.md b/.github/SECURITY.md index b39b39693..184c3c773 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -18,6 +18,6 @@ Version | Supported ## Reporting a Vulnerability -Please do not report security vulnerabilities on GitHub. Instead, get the attention of a developer in our development IRC channel at irc.inspircd.org #inspircd.dev and PM them the details. +Please do not report security vulnerabilities on GitHub. Instead, get the attention of a developer in our development IRC channel at irc.chatspike.net #inspircd.dev and PM them the details. We will triage your issue as soon as possible and try to release a fixed version within a week of receiving your report. -- cgit v1.3.1-10-gc9f91 From f6692c1b8d6fb52e3f063f37c1d7f3eeb907338d Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Wed, 17 Jul 2024 20:41:51 +0100 Subject: Update irctest. [skip alpine ci] [skip macos ci] [skip ubuntu ci] [skip windows ci] --- .github/workflows/ci-irctest.yml | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci-irctest.yml b/.github/workflows/ci-irctest.yml index af97ea2e4..b8b762d92 100644 --- a/.github/workflows/ci-irctest.yml +++ b/.github/workflows/ci-irctest.yml @@ -16,24 +16,17 @@ on: jobs: build: if: "!contains(github.event.head_commit.message, '[skip irctest ci]')" - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - - name: Checkout irctest - uses: actions/checkout@v4 - with: - path: irctest - ref: 2dea91e17a873761f20bd10a9a188f6abe2046ba - repository: progval/irctest - - name: Run configure run: ./configure --development --disable-auto-extras --prefix=$HOME/.local/ # Speed-up build (6 min -> 5 min) - name: Precompile inspircd.h - run: c++ -I vendor/ include/inspircd.h + run: c++ -isystem vendor include/inspircd.h - name: Build and install env: @@ -54,7 +47,7 @@ jobs: test: if: "!contains(github.event.head_commit.message, '[skip irctest ci]')" - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest needs: - build steps: @@ -73,7 +66,7 @@ jobs: uses: actions/checkout@v4 with: path: irctest - ref: 2dea91e17a873761f20bd10a9a188f6abe2046ba + ref: a1324407893b603fe6b55ce7c4ee385938291ae1 repository: progval/irctest - name: Install irctest dependencies @@ -97,7 +90,7 @@ jobs: cd $GITHUB_WORKSPACE/anope/ sudo apt-get install ninja-build --no-install-recommends mkdir build && cd build - cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local/ -DPROGRAM_NAME=anope -DUSE_PCH=ON -GNinja .. + cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local/ -DPROGRAM_NAME=anope -GNinja .. ninja install - name: Run irctest (Anope services) -- cgit v1.3.1-10-gc9f91