summaryrefslogtreecommitdiff
path: root/.github
AgeCommit message (Collapse)Author
2023-01-07Meta: Mark myself as a CODEOWNER of a bunch of pathsAli Mohammad Pur
2023-01-06CI: Use default provided GITHUB_TOKEN for PR label workflowLinus Groh
Using BUGGIEBOT_TOKEN doesn't work in all cases for unknown reasons. See also: https://github.com/actions/github-script#using-a-separate-github-token
2023-01-06CI: Unify secrets.BUGGIEBOT and secrets.BUGGIEBOT_TOKENLinus Groh
The latter is clearer, so let's use that.
2023-01-06CI: Automatically apply pull request labels for generic PR actionsLuke Wilde
Generic PR actions include opening a PR, submit review comments, adding new commits, etc. This prevents the reviewer and PR submitter from having to manually bounce the labels back and forth in the general case. The reviewer also may not have permission to set labels, meaning the reviewer won't be able to update the labels accordingly themselves. This does not handle more subjective labels such as pr-is-blocked and pr-unclear. Unfortunately, there does not seem to be a GitHub Actions trigger for when a PR has merge conflicts, so the pr-has-conflicts label cannot be automatically applied. Co-authored-by: kleines Filmröllchen <filmroellchen@serenityos.org>
2023-01-03Meta: Mark myself a CODEOWNER of some paths to be alerted of related PRsTimothy Flynn
2023-01-03Meta: Add CODEOWNERS fileLinus Groh
These are the areas of the system where I'd like GitHub to inform me about changes, other maintainers are of course free to add themselves. Subscribing to all notifications and using email filters is no longer practical :^) https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
2022-12-28Meta: Remove i686 targetLiav A
2022-12-24Meta: Move UCD/CLDR/TZDB downloaded artifacts to Build/cachesTimothy Flynn
They currently reside under Build/<arch>, meaning that they would be redownloaded for each architecture/toolchain build combo. Move them to a location that can be re-used for all builds.
2022-12-24Meta: Add downloaded artifact caches to nightly static analysis buildsTimothy Flynn
2022-12-24Meta: Use correct cache key for CLDR data during CITimothy Flynn
Not a huge deal because this at least would still differ from the UCD cache due to the locale_data.cmake. But this will use the same cache key as other CI jobs.
2022-12-10CI: Fix commit linting for multi-line commit messagesLucas CHOLLET
Third time's the charm
2022-12-10CI: Correct regex to retrieve git merge commitLucas CHOLLET
In 839c1a57, I wrongly assumed that a matched pattern will raise an error, it's the opposite. This patch "negates" the regex to solve the issue.
2022-12-10CI: Add a check to report git merge commitLucas CHOLLET
2022-12-03Meta: Switch to clang-format-15 as the standard formatterLinus Groh
The two major changes noticeable on the SerenityOS codebase are: - Much improved support for const placement, clang-format-14 ignored our east-const configuration in various places - Different formatting for requires clauses, now breaking them onto their own line, which helps with readability a bit Current versions of CLion also ship LLVM 15, so the built-in formatting now matches CI formatting again :^)
2022-12-03CI: Run test262 tests with optimized bytecode as wellIdan Horowitz
2022-12-03Meta+CI: Add CI job specifically for bundling serenity-js artifactsAndrew Kaster
These are used by esvu, and it is sad that we don't have macOS binaries availble for consumption by esvu users. Add a matrix job to handle this separately from the test262 results.
2022-11-26Meta: Build the wasm libs with -DBUILD_SHARED_LIBS=OFFAli Mohammad Pur
CMake already does this, but it also emits a warning about it, do that to make the CMake gods happier.
2022-11-26Meta: Use the correct cache paths in the wasm workflowAli Mohammad Pur
Previously we were caching unicode data for the lagom tools, but we should've been caching them for the actual build instead.
2022-11-26Meta: Update actions/libjs-test262 action to newer versiondavidot
This should get rid of the non node 16 and outdated command warnings.
2022-11-26Meta: Build and deploy the WebAssembly LibJS REPL on mergeAli Mohammad Pur
2022-11-25CI: Upgrade `actions/github-script` to v6martinfalisse
The only breaking change is an internal switch to node 16 which doesn't seem to affect the functionality of the lintcommits script.
2022-11-05CI: Check out PR merge branch instead of sourceJelle Raaijmakers
2022-11-03CI: Also update the main workflow to use actions/checkout version 3Timothy Flynn
2022-11-03CI: Upgrade `actions/setup-python` to v4Filiph Sandström
Just as the actions/checkout the only breaking change is a internal one related to upgrading from node 12 to node 16.
2022-11-03CI: Upgrade `actions/checkout` to v3Filiph Sandström
actions/checkout's only change between v2 and v3 is an internal switch to node 16 which wont effect our usage of it at all.
2022-10-31CI: Make the test262 worker use GCC 12Luke Wilde
2022-10-25Everywhere: Require version >= 12 for GCC host compilerLinus Groh
So far we've gotten away with using GCC 11 for Lagom and to compile the toolchain, but via #15795 we discovered a compiler bug that has been fixed in the latest version but would error the build with CI's GCC 11. Time for an upgrade :^) We already use ubuntu-22.04 images in most places, so this is pretty straightforward. The only exception is Idan's self-hosted runner, which uses Ubuntu Focal. LibJS should build fine with GCC 11, still.
2022-10-15Meta: Instruct stale-bot to ignore `pr-is-blocked` PRsBrian Gianforcaro
2022-10-06Meta: Add networkException's GitHub sponsors to the funding options listnetworkException
2022-10-06Meta: Add my GitHub sponsor profile to the repository listkleines Filmröllchen
2022-09-24Meta: Enable full region dumping on CIkleines Filmröllchen
2022-09-11Meta: Make the CI build the new test262 test runnerdavidot
2022-09-05LibUnicode: Move CLDR data generators to a LibLocale subfolderTimothy Flynn
To prepare for placing all CLDR generated data in a new library, LibLocale, this moves the code generators for the CLDR data to the LibLocale subfolder.
2022-08-17Meta: Upgrade to the lastest version of the SonarScanner CLIBrian Gianforcaro
2022-08-14Everywhere: Get rid of the fbdev kernel boot argument remaindersLiav A
2022-07-20Meta: Upgrade CI's prettier to version 2.7.1Ali Mohammad Pur
The old version didn't know how to parse regexps with the unicodeSets flag set.
2022-07-02CI: Use a custom ccache directory in GitHub CIIdan Horowitz
This ensures that updates to ccache that change the default cache directory do not break out github ccache cache.
2022-06-18Meta: Run PNG size checks on CIkleines Filmröllchen
For safety, the PNG check doesn't run if there's no optipng installed (I didn't want to break everyone's pre-commit hook with the introdcution of that check). To make it run on CI, just install optipng which is available in the standard Ubuntu package repo.
2022-06-15Meta: Add Xexxa's GitHub Sponsors to funding options :^)Andreas Kling
2022-05-25Meta: Use Ubuntu 22.04 images for static analysisEWouters
Fixes 2f1029e while `ubuntu-latest` is not `ubuntu-22.04`.
2022-05-24Meta+CI: Upgrade to ubuntu-22.04Nathan Wallace
This commit upgrades Github Actions workers to ubuntu-22.04 As part of that change, we (currently) no longer need the backports nor toolchain-r/test PPAs, because ubuntu-22.04 include recent-enough version of QEMU and gcc
2022-05-20CI: Fix syntax error after d0edf2627c3d72fa1d59ba173bac1c0cc3cb27e9Daniel Bertalan
2022-05-19Toolchain+Ports: Split the GCC patchesDaniel Bertalan
This shouldn't cause any breaking changes, so a toolchain rebuild is not required. As per Hendiadyoin's request, math errno is disabled by default, which should enable some extra compiler optimizations in LibGL and LibSoftGPU code that uses math functions heavily. Co-Authored-By: Ali Mohammad Pur <mpfard@serenityos.org>
2022-04-23CI: Update the path to our LLVM patchesDaniel Bertalan
The LLVM patch has been broken up into smaller commits and moved to a separate directory. CI should look at this new location to determine if the toolchain needs to be rebuilt.
2022-04-03Meta: Reword and reformat the suppression comments for PVS StudioBrian Gianforcaro
2022-04-03Meta: Sort PVS Studio suppressions numerically :^)Brian Gianforcaro
2022-04-03Meta: Suppress PVS Studio Rule v603Brian Gianforcaro
This rule seems to be confused about basic syntax of C++. It flags with false positives such as: ``` The object was created but it is not being used. If you wish to call constructor, 'this->set_y::set_y(....)' should be used. ``` Lets suppress it until it can be fixed.
2022-04-03Meta: Suppress PVS Studio Rule v591 "non-void functions should return"Brian Gianforcaro
This rule appears to be fundamentally broken for our code base, it flags `void` functions all over the place, as well as constructors. Lets suppress it for now.
2022-04-01Meta: Switch to clang-format-14 as the standard formatterIdan Horowitz
Now that clang-format-14 ubuntu packages are available, it's time to finally upgrade our clang-format version. This version brings with it a bunch of useful features with const-placement being the most notable. These will be enabled in the following commits.
2022-03-17Meta: Ignore the return value of test-wasm on CIAli Mohammad Pur