mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
CI: Switch Linux runners to Ubuntu 24.04
Some checks are pending
CI / Lagom (false, FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, macos-14, macOS, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (true, NO_FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
Some checks are pending
CI / Lagom (false, FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, macos-14, macOS, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (true, NO_FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
This commit is contained in:
parent
04b45a8961
commit
c412181683
Notes:
github-actions[bot]
2024-10-02 10:42:21 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/c412181683c Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1590 Reviewed-by: https://github.com/awesomekling ✅
4 changed files with 13 additions and 17 deletions
12
.github/actions/setup/action.yml
vendored
12
.github/actions/setup/action.yml
vendored
|
@ -20,12 +20,10 @@ runs:
|
|||
set -e
|
||||
|
||||
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
|
||||
sudo add-apt-repository 'deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main'
|
||||
sudo add-apt-repository 'deb http://apt.llvm.org/noble/ llvm-toolchain-noble-18 main'
|
||||
|
||||
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
|
||||
|
||||
sudo apt-get update
|
||||
sudo apt-get install autoconf autoconf-archive automake build-essential ccache clang-18 clang++-18 cmake curl fonts-liberation2 \
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y autoconf autoconf-archive automake build-essential ccache clang-18 clang++-18 cmake curl fonts-liberation2 \
|
||||
gcc-13 g++-13 libavcodec-dev libavformat-dev libavutil-dev libegl1-mesa-dev libgl1-mesa-dev libpulse-dev libssl-dev \
|
||||
libstdc++-13-dev lld-18 nasm ninja-build qt6-base-dev qt6-tools-dev-tools tar unzip zip
|
||||
|
||||
|
@ -43,8 +41,8 @@ runs:
|
|||
if: ${{ inputs.os == 'Linux' }}
|
||||
shell: bash
|
||||
run: |
|
||||
python3 -m pip install --upgrade pip
|
||||
pip3 install requests six
|
||||
python3 -m pip install --break-system-packages --upgrade pip
|
||||
pip3 install --break-system-packages requests six
|
||||
|
||||
- name: 'Select latest Xcode'
|
||||
if: ${{ inputs.os == 'macOS' || inputs.os == 'Android' }}
|
||||
|
|
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -14,14 +14,14 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
os_name: ['Linux']
|
||||
os: [ubuntu-22.04]
|
||||
os: [ubuntu-24.04]
|
||||
fuzzer: ['NO_FUZZ']
|
||||
toolchain: ['GNU']
|
||||
clang_plugins: [false]
|
||||
|
||||
include:
|
||||
- os_name: 'Linux'
|
||||
os: ubuntu-22.04
|
||||
os: ubuntu-24.04
|
||||
fuzzer: 'NO_FUZZ'
|
||||
toolchain: 'Clang'
|
||||
clang_plugins: true
|
||||
|
@ -33,7 +33,7 @@ jobs:
|
|||
clang_plugins: false
|
||||
|
||||
- os_name: 'Linux'
|
||||
os: ubuntu-22.04
|
||||
os: ubuntu-24.04
|
||||
fuzzer: 'FUZZ'
|
||||
toolchain: 'Clang'
|
||||
clang_plugins: false
|
||||
|
|
10
.github/workflows/ladybird-js-artifacts.yml
vendored
10
.github/workflows/ladybird-js-artifacts.yml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-22.04]
|
||||
os: [ubuntu-24.04]
|
||||
package_type: [Linux-x86_64]
|
||||
os_name: [Linux]
|
||||
include:
|
||||
|
@ -24,7 +24,7 @@ jobs:
|
|||
os_name: macOS
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ matrix.os }}
|
||||
group: ${{ github.workflow }}-${{ matrix.os_name }}
|
||||
cancel-in-progress: true
|
||||
|
||||
steps:
|
||||
|
@ -54,9 +54,7 @@ jobs:
|
|||
-DCMAKE_C_COMPILER=gcc-13 \
|
||||
-DCMAKE_CXX_COMPILER=g++-13 \
|
||||
-DENABLE_GUI_TARGETS=OFF
|
||||
if: ${{ matrix.os == 'ubuntu-22.04' }}
|
||||
env:
|
||||
CCACHE_DIR: ${{ env.CCACHE_DIR }}
|
||||
if: ${{ matrix.os_name == 'Linux' }}
|
||||
|
||||
# FIXME: Add the following flag back when vcpkg supports Universal binaries:
|
||||
# -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
|
||||
|
@ -68,7 +66,7 @@ jobs:
|
|||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_OSX_DEPLOYMENT_TARGET="11.0" \
|
||||
-DENABLE_GUI_TARGETS=OFF
|
||||
if: ${{ matrix.os == 'macos-14' }}
|
||||
if: ${{ matrix.os_name == 'macOS' }}
|
||||
|
||||
- name: Build and package js
|
||||
working-directory: Build
|
||||
|
|
2
.github/workflows/lint-commits.yml
vendored
2
.github/workflows/lint-commits.yml
vendored
|
@ -7,7 +7,7 @@ on: [pull_request_target]
|
|||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-22.04
|
||||
runs-on: ubuntu-24.04
|
||||
if: always() && github.repository == 'LadybirdBrowser/ladybird'
|
||||
|
||||
steps:
|
||||
|
|
Loading…
Reference in a new issue