Everywhere: Convert from_string_view -> from_string_literal where static #3424
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || format('{0}-{1}', github.ref, github.run_number) }} | |
cancel-in-progress: true | |
jobs: | |
SerenityOS: | |
if: github.repository == 'SerenityOS/serenity' | |
strategy: | |
fail-fast: false | |
matrix: | |
toolchain: ['GNU', 'Clang'] | |
os: [ubuntu-22.04] | |
arch: ['x86_64'] | |
debug_options: ['NORMAL_DEBUG'] | |
include: | |
- toolchain: 'GNU' | |
os: ubuntu-22.04 | |
arch: 'aarch64' | |
debug_options: 'NORMAL_DEBUG' | |
- toolchain: 'GNU' | |
os: ubuntu-22.04 | |
arch: 'riscv64' | |
debug_options: 'NORMAL_DEBUG' | |
- toolchain: 'GNU' | |
os: ubuntu-22.04 | |
arch: 'x86_64' | |
debug_options: 'ALL_DEBUG' | |
uses: ./.github/workflows/serenity-template.yml | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
os: ${{ matrix.os }} | |
arch: ${{ matrix.arch }} | |
debug_options: ${{ matrix.debug_options }} | |
Lagom: | |
if: github.repository == 'SerenityOS/serenity' | |
strategy: | |
fail-fast: false | |
matrix: | |
os_name: ['Linux'] | |
os: [ubuntu-22.04] | |
fuzzer: ['NO_FUZZ', 'FUZZ'] | |
include: | |
- os_name: 'macOS' | |
os: macos-14 | |
fuzzer: 'NO_FUZZ' | |
uses: ./.github/workflows/lagom-template.yml | |
with: | |
toolchain: 'Clang' | |
os_name: ${{ matrix.os_name }} | |
os: ${{ matrix.os }} | |
fuzzer: ${{ matrix.fuzzer }} |