mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 20:15:17 +00:00
Meta+CI: Add CI job specifically for bundling serenity-js artifacts
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.
This commit is contained in:
parent
186237aec8
commit
f539bf467c
Notes:
sideshowbarker
2024-07-17 21:26:19 +09:00
Author: https://github.com/ADKaster Commit: https://github.com/SerenityOS/serenity/commit/f539bf467c Pull-request: https://github.com/SerenityOS/serenity/pull/16274 Reviewed-by: https://github.com/trflynn89
3 changed files with 117 additions and 14 deletions
13
.github/workflows/libjs-test262.yml
vendored
13
.github/workflows/libjs-test262.yml
vendored
|
@ -174,16 +174,3 @@ jobs:
|
|||
continue-on-error: true
|
||||
working-directory: libjs-test262
|
||||
run: ./per_file_result_diff.py -o wasm-per-file-master.json -n ../libjs-website/wasm/data/per-file-master.json
|
||||
|
||||
- name: Build and package js
|
||||
working-directory: libjs-test262/Build
|
||||
run: |
|
||||
ninja js
|
||||
cpack -D CPACK_INSTALL_CMAKE_PROJECTS="$(pwd)/_deps/lagom-build;js;js;/"
|
||||
|
||||
- name: Upload js package
|
||||
uses: actions/upload-artifact@v3.1.1
|
||||
with:
|
||||
name: serenity-js
|
||||
path: libjs-test262/Build/serenity-js.tar.gz
|
||||
retention-days: 7
|
||||
|
|
105
.github/workflows/serenity-js-artifacts.yml
vendored
Normal file
105
.github/workflows/serenity-js-artifacts.yml
vendored
Normal file
|
@ -0,0 +1,105 @@
|
|||
name: Package the js repl as a binary artifact
|
||||
|
||||
on: [push]
|
||||
|
||||
env:
|
||||
SERENITY_SOURCE_DIR: ${{ github.workspace }}
|
||||
|
||||
jobs:
|
||||
build-and-package:
|
||||
runs-on: ${{ matrix.os }}
|
||||
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-22.04]
|
||||
package_type: [Linux-x86_64]
|
||||
include:
|
||||
- os: macos-12
|
||||
package_type: macOS-universal2
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ matrix.os }}
|
||||
cancel-in-progress: true
|
||||
|
||||
steps:
|
||||
- name: Checkout SerenityOS/serenity
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install dependencies Ubuntu
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y ninja-build unzip gcc-12 g++-12
|
||||
if: ${{ matrix.os == 'ubuntu-22.04' }}
|
||||
|
||||
- name: Install dependencies macOS
|
||||
run: |
|
||||
brew install bash ninja unzip
|
||||
if: ${{ matrix.os == 'macos-12' }}
|
||||
|
||||
- name: Check versions Ubuntu
|
||||
run: |
|
||||
ninja --version; gcc-12 --version; g++-12 --version
|
||||
if: ${{ matrix.os == 'ubuntu-22.04' }}
|
||||
|
||||
- name: Check versions macOS
|
||||
run: |
|
||||
ninja --version; clang++ --version
|
||||
if: ${{ matrix.os == 'macos-12' }}
|
||||
|
||||
- name: Create build directory
|
||||
run: |
|
||||
mkdir -p Build/TZDB
|
||||
mkdir -p Build/UCD
|
||||
mkdir -p Build/CLDR
|
||||
|
||||
- name: TimeZoneData cache
|
||||
# TODO: Change the version to the released version when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
||||
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
||||
with:
|
||||
path: ${{ github.workspace }}/libjs-test262/Build/TZDB
|
||||
key: TimeZoneData-${{ hashFiles('Meta/CMake/time_zone_data.cmake') }}
|
||||
|
||||
- name: UnicodeData cache
|
||||
# TODO: Change the version to the released version when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
||||
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
||||
with:
|
||||
path: ${{ github.workspace }}/libjs-test262/Build/UCD
|
||||
key: UnicodeData-${{ hashFiles('Meta/CMake/unicode_data.cmake') }}
|
||||
|
||||
- name: UnicodeLocale cache
|
||||
# TODO: Change the version to the released version when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
||||
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
||||
with:
|
||||
path: ${{ github.workspace }}/libjs-test262/Build/CLDR
|
||||
key: UnicodeData-${{ hashFiles('Meta/CMake/locale_data.cmake') }}
|
||||
|
||||
- name: Create build directory Ubuntu
|
||||
run: |
|
||||
cmake -S Meta/Lagom -B Build -G Ninja \
|
||||
-DCMAKE_C_COMPILER=gcc-12 \
|
||||
-DCMAKE_CXX_COMPILER=g++-12 \
|
||||
-DBUILD_LAGOM=ON
|
||||
if: ${{ matrix.os == 'ubuntu-22.04' }}
|
||||
|
||||
- name: Create build directory macOS
|
||||
run: |
|
||||
# Note: We are using Apple Clang to create Universal binary
|
||||
cmake -S Meta/Lagom -B Build -G Ninja \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" \
|
||||
-DBUILD_LAGOM=ON
|
||||
if: ${{ matrix.os == 'macos-12' }}
|
||||
|
||||
- name: Build and package js
|
||||
working-directory: Build
|
||||
run: |
|
||||
ninja js
|
||||
cpack
|
||||
|
||||
- name: Upload js package
|
||||
uses: actions/upload-artifact@v3.1.1
|
||||
with:
|
||||
name: serenity-js-${{ matrix.package_type }}
|
||||
path: Build/serenity-js*.tar.gz
|
||||
retention-days: 7
|
|
@ -700,7 +700,18 @@ if (BUILD_LAGOM)
|
|||
set(CPACK_STRIP_FILES TRUE)
|
||||
set(CPACK_ARCHIVE_COMPONENT_INSTALL ON)
|
||||
set(CPACK_COMPONENTS_ALL js)
|
||||
set(CPACK_PACKAGE_FILE_NAME serenity-js)
|
||||
if (APPLE)
|
||||
if("arm64" IN_LIST CMAKE_OSX_ARCHITECTURES AND "x86_64" IN_LIST CMAKE_OSX_ARCHITECTURES)
|
||||
set(CPACK_SYSTEM_NAME "macOS-universal2")
|
||||
else()
|
||||
set(CPACK_SYSTEM_NAME "macOS-${CMAKE_SYSTEM_PROCESSOR}")
|
||||
endif()
|
||||
else()
|
||||
set(CPACK_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_PROCESSOR}")
|
||||
endif()
|
||||
|
||||
set(CPACK_ARCHIVE_JS_FILE_NAME "serenity-js-${CPACK_SYSTEM_NAME}")
|
||||
set(CPACK_PACKAGE_FILE_NAME "serenity-js-${CPACK_SYSTEM_NAME}")
|
||||
include(CPack)
|
||||
endif()
|
||||
endif()
|
||||
|
|
Loading…
Add table
Reference in a new issue