aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci-linux.yml
Commit message (Collapse)AuthorAgeFilesLines
* Bump actions/checkout from 5 to 6Gravatar dependabot[bot]2025-12-011-1/+1
| | | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* Bump actions/checkout from 4 to 5Gravatar dependabot[bot]2025-09-021-1/+1
| | | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* Revert "Demote the regex_tre module to inspircd-contrib".Gravatar Sadie Powell2025-08-191-1/+2
| | | | | | TRE is now maintained again so we can revive this. This reverts commit bd9b6c40059795fd5fb78e16a540ce661c77f82f.
* Rename regex_pcre back to regex_pcre2.Gravatar Sadie Powell2024-06-071-1/+1
| | | | | This rename happened before we had config compatibility and it doesn't make sense to keep it anymore.
* Move ssl_mbedtls to inspircd-contrib.Gravatar Sadie Powell2024-04-151-2/+1
| | | | Closes #2088.
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-10-021-1/+1
|\
| * Bump actions/checkout from 3 to 4 (#2062)Gravatar dependabot[bot]2023-10-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
| * Import regex_pcre2 from inspircd-contrib.Gravatar Sadie Powell2022-12-051-1/+2
| | | | | | | | | | | | The original plan was to make the PCRE2 switch happen in v3 but it seems that distributions are beginning to unpackage the old pcre library already.
| * Switch the Ubuntu CI to use ubuntu-latest.Gravatar Sadie Powell2022-11-301-1/+1
| |
* | Add support for using the Public Suffix List in cloak_sha256.Gravatar Sadie Powell2023-01-141-0/+1
| | | | | | | | Closes #1658.
* | Update UNIX CI images to use the latest tooling.Gravatar Sadie Powell2022-06-151-1/+1
| | | | | | | | Windows is not yet updated as the SDKs are not updated.
* | Implement support for JSON logging.Gravatar Sadie Powell2022-05-021-2/+3
| |
* | Rewrite the entire logging system.Gravatar Sadie Powell2022-05-011-1/+1
| | | | | | | | | | | | - Much cleaner API for writing to the log. - Adds support for stderr and stdout logging to the core. - Adds support for sql and syslog logging in modules.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-161-1/+1
|\|
| * Bump actions/checkout from 2 to 3Gravatar dependabot[bot]2022-04-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* | Separate core modules from modules in CI.Gravatar Sadie Powell2022-01-221-0/+4
| | | | | | | | [skip windows ci]
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-01-151-8/+2
|\|
| * Improve CI scripts.Gravatar Sadie Powell2022-01-151-4/+24
| | | | | | | | | | | | | | - Add support for skipping CI on specific platforms with commit comments. - Add support for testing on Alpine (which uses musl instead of glibc). - Rename "Linux CI" to "Ubuntu CI" now we test other Linux distros. - Properly add packages to the PATH and LD_LIBRARY_PATH on macOS.
* | Rename regex_pcre2 to regex_pcre.Gravatar Sadie Powell2021-11-141-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-11-051-2/+4
|\|
| * Switch -std=c++14 for -std=c++17 in CI.Gravatar Sadie Powell2021-11-041-1/+1
| | | | | | | | This better matches with the master branch which uses C++17.
| * Run CI once per week to check for issues with updated packages.Gravatar Sadie Powell2021-11-041-2/+4
| |
| * Disable fail-fast in GitHub Actions.Gravatar Sadie Powell2021-06-061-0/+1
| |
| * Switch from the Ubuntu 16.04 image to the 18.04 Ubuntu image.Gravatar Sadie Powell2021-05-071-2/+2
| | | | | | | | | | | | | | The Argon2 PPA is broken again and I don't want to deal with the stress of working out why. The 16.04 image is EOL soon (see actions/virtual-environments/#1084) so switching off it is just easier.
* | Yeet regex_pcre into contrib.Gravatar Sadie Powell2021-10-011-2/+1
| |
* | Add the regex_pcre2 module.Gravatar Sadie Powell2021-09-261-1/+2
| |
* | Attempt to run after building to check everything built okay.Gravatar Sadie Powell2021-06-091-0/+11
| |
* | Demote the regex_tre module to inspircd-contrib.Gravatar Sadie Powell2021-06-011-2/+1
| |
* | Add a workaround for a bug in GitHub Actions.Gravatar Sadie Powell2021-05-271-0/+4
| |
* | Fix inconsistencies between the CI environments.Gravatar Sadie Powell2020-11-041-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-10-271-1/+2
|\|
| * Fix building the argon2 module on CI due to a broken PPA package.Gravatar Sadie Powell2020-10-161-1/+1
| |
| * Implement support for Argon2 password hashing.Gravatar ShutterQuick2020-10-101-2/+2
| | | | | | Resolves #1540.
* | Build regex_posix and regex_re2 on GitHub Actions.Gravatar Sadie Powell2020-07-221-2/+3
| |
* | Clean up the Linux CI package list.Gravatar Sadie Powell2020-07-221-2/+18
| |
* | Use separate GitHub Actions builds for socketengine testing.Gravatar Sadie Powell2020-07-201-3/+21
| |
* | Upgrade GitHub Actions to use Ubuntu 20.04.Gravatar Sadie Powell2020-06-171-1/+1
| |
* | Update GitHub Actions to use the latest Clang and GCC.Gravatar Sadie Powell2020-05-081-4/+4
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-02-041-1/+1
|\|
| * Improve manually enabling extra modules.Gravatar Sadie Powell2020-01-181-1/+1
| | | | | | | | | | | | - Allow modules to be specified without their prefix and extensions in --{disable,enable}-extras. - Allow modules to be space delimited in --{disable,enable}-extras.
| * Migrate from Travis CI to GitHub Actions.Gravatar Sadie Powell2020-01-171-0/+27
| | | | | | This brings shiny new GitHub integrations as well as allowing us to bring back the macOS builds which were disabled because of the very broken Travis CI macOS infrastructure.
* Various CI improvements.Gravatar Sadie Powell2020-01-171-1/+1
| | | | | - Never build with GCC on macOS as its an alias for Clang. - We don't depend on libgeoip anymore so don't install it.
* Migrate from Travis CI to GitHub Actions.Gravatar Sadie Powell2020-01-171-0/+23
This brings shiny new GitHub integratiosn as well as allowing us to bring back the macOS builds which were disabled because of the very broken Travis CI macOS infrastructure.