Fix CI bun-webkit-linux-arm64-debug #238
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 | ||
# Controls when the workflow will run | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the "master" branch | ||
push: | ||
branches: ["main"] | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
jobs: | ||
macos: | ||
name: macOS | ||
runs-on: ${{ matrix.runner }} | ||
timeout-minutes: 90 | ||
strategy: | ||
matrix: | ||
include: | ||
- runner: macos-12 | ||
lto_flag: "" | ||
cpu: haswell | ||
label: bun-webkit-macos-amd64-debug | ||
brew_prefix: /usr/local/opt | ||
package_json_arch: "x64" | ||
CMAKE_BUILD_TYPE: Debug | ||
- runner: macOS-arm64 | ||
lto_flag: "" | ||
cpu: native | ||
label: bun-webkit-macos-arm64-debug | ||
brew_prefix: /opt/homebrew/opt | ||
package_json_arch: "arm64" | ||
CMAKE_BUILD_TYPE: Debug | ||
- runner: macos-12 | ||
lto_flag: -flto='full' | ||
cpu: haswell | ||
label: bun-webkit-macos-amd64-lto | ||
brew_prefix: /usr/local/opt | ||
package_json_arch: "x64" | ||
CMAKE_BUILD_TYPE: Release | ||
- runner: macos-12 | ||
lto_flag: "" | ||
cpu: haswell | ||
label: bun-webkit-macos-amd64 | ||
brew_prefix: /usr/local/opt | ||
package_json_arch: "x64" | ||
CMAKE_BUILD_TYPE: Release | ||
- runner: macOS-arm64 | ||
lto_flag: -flto='full' | ||
cpu: native | ||
label: bun-webkit-macos-arm64-lto | ||
brew_prefix: /opt/homebrew/opt | ||
package_json_arch: "arm64" | ||
CMAKE_BUILD_TYPE: Release | ||
- runner: macOS-arm64 | ||
lto_flag: "" | ||
cpu: native | ||
label: bun-webkit-macos-arm64 | ||
brew_prefix: /opt/homebrew/opt | ||
package_json_arch: "arm64" | ||
CMAKE_BUILD_TYPE: Release | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: PATH | ||
env: | ||
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 | ||
HOMEBREW_NO_AUTO_UPDATE: 1 | ||
HOMEBREW_NO_INSTALL_CLEANUP: 1 | ||
HOMEBREW_NO_ANALYTICS_THIS_RUN: 1 | ||
run: | | ||
echo "${{matrix.brew_prefix}}/llvm@16/bin" >> $GITHUB_PATH | ||
brew install llvm@16 python icu4c ninja -f --overwrite | ||
brew link llvm@16 -f --overwrite | ||
- name: Run | ||
env: | ||
ICU_INCLUDE_DIRS: ${{matrix.brew_prefix}}/icu4c/include | ||
LDFLAGS: "${{env.LDFLAGS}} -L${{matrix.brew_prefix}}/llvm/lib/c++ -Wl,-rpath,${{matrix.brew_prefix}}/llvm/lib/c++" | ||
CC: "${{matrix.brew_prefix}}/llvm@16/bin/clang" | ||
CXX: "${{matrix.brew_prefix}}/llvm@16/bin/clang++" | ||
CMAKE_C_COMPILER: "${{matrix.brew_prefix}}/llvm@16/bin/clang" | ||
CMAKE_CXX_COMPILER: "${{matrix.brew_prefix}}/llvm@16/bin/clang++" | ||
CMAKE_C_FLAGS: "-fuse-ld=lld -fno-exceptions ${{matrix.lto_flag}} -fvisibility=hidden -fvisibility-inlines-hidden -O3" | ||
CMAKE_CXX_FLAGS: "-fuse-ld=lld -I${{matrix.brew_prefix}}/llvm/include -fno-exceptions ${{matrix.lto_flag}} -fvisibility=hidden -fvisibility-inlines-hidden -O3" | ||
CMAKE_OSX_DEPLOYMENT_TARGET: "12.0" | ||
CMAKE_BUILD_TYPE: ${{matrix.CMAKE_BUILD_TYPE}} | ||
PACKAGE_JSON_ARCH: ${{matrix.package_json_arch}} | ||
PACKAGE_JSON_LABEL: ${{matrix.label}} | ||
run: GITHUB_REPOSITORY=$GITHUB_REPOSITORY bash mac-release.bash | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{matrix.label}} | ||
path: ${{runner.temp}}/bun-webkit.tar.gz | ||
linux: | ||
name: Linux | ||
runs-on: ${{matrix.os}} | ||
strategy: | ||
matrix: | ||
include: | ||
- lto_flag: "" | ||
label: bun-webkit-linux-amd64-debug | ||
os: big-ubuntu | ||
package_json_arch: "x64" | ||
CMAKE_BUILD_TYPE: "Debug" | ||
- lto_flag: "" | ||
label: bun-webkit-linux-arm64-debug | ||
os: linux-arm64 | ||
package_json_arch: "arm64" | ||
CMAKE_BUILD_TYPE: "Debug" | ||
- lto_flag: "-flto='full'" | ||
label: bun-webkit-linux-arm64-lto | ||
os: linux-arm64 | ||
package_json_arch: "arm64" | ||
CMAKE_BUILD_TYPE: "Release" | ||
- lto_flag: "" | ||
label: bun-webkit-linux-arm64 | ||
os: linux-arm64 | ||
package_json_arch: "arm64" | ||
CMAKE_BUILD_TYPE: "Release" | ||
- lto_flag: "-flto='full'" | ||
label: bun-webkit-linux-amd64-lto | ||
os: big-ubuntu | ||
package_json_arch: "x64" | ||
CMAKE_BUILD_TYPE: "Release" | ||
- lto_flag: "" | ||
label: bun-webkit-linux-amd64 | ||
os: big-ubuntu | ||
package_json_arch: "x64" | ||
CMAKE_BUILD_TYPE: "Release" | ||
timeout-minutes: 90 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: docker/setup-buildx-action@v2 | ||
id: buildx | ||
with: | ||
install: true | ||
- name: Run | ||
run: | | ||
rm -rf ${{runner.temp}}/bun-webkit ${{runner.temp}}/bun-webkit.tar.gz | ||
WEBKIT_RELEASE_TYPE=${{matrix.CMAKE_BUILD_TYPE}} CPU="native" cpu=native LTO_FLAG=${{matrix.lto_flag}} temp=${{runner.temp}} bash release.sh | ||
cd ${{runner.temp}} | ||
echo "#define BUN_WEBKIT_VERSION \"${{github.sha}}\"" >> bun-webkit/include/cmakeconfig.h | ||
echo '{ "name": "${{matrix.label}}", "version": "0.0.1-${{github.sha}}", "os": ["linux"], "cpu": ["${{matrix.package_json_arch}}"], "repository": "https://github.com/${{github.repository}}" }' > bun-webkit/package.json | ||
rm -rf bun-webkit/lib/*.so | ||
rm -rf bun-webkit/lib/*.so.* | ||
tar -czf bun-webkit.tar.gz bun-webkit | ||
rm -rf bun-webkit | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{matrix.label}} | ||
path: ${{runner.temp}}/bun-webkit.tar.gz | ||
windows: | ||
strategy: | ||
matrix: | ||
include: | ||
- runner: windows-latest | ||
build-type: Release | ||
arch: amd64 | ||
suffix: "" | ||
include: | ||
- runner: windows-latest | ||
build-type: Debug | ||
arch: amd64 | ||
suffix: debug | ||
runs-on: windows-latest | ||
timeout-minutes: 90 | ||
steps: | ||
- uses: KyleMayes/install-llvm-action@1a3da29f56261a1e1f937ec88f0856a9b8321d7e | ||
with: | ||
version: 16.0.6 | ||
- uses: cygwin/cygwin-install-action@006ad0b0946ca6d0a3ea2d4437677fa767392401 | ||
- run: choco install -y ninja | ||
- uses: actions/checkout@v4 | ||
- name: Build WebKit | ||
run: | | ||
$env:Path = "C:\Program Files (x86)\Windows Kits\10\bin\10.0.22621.0\x64\;" + $env:Path | ||
$env:WEBKIT_OUTPUT_DIR = "bun-webkit" | ||
$env:BUN_WEBKIT_VERSION = "${{ github.sha }}" | ||
$env:CMAKE_BUILD_TYPE = "${{matrix.build-type}}" | ||
./windows-release.ps1 | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: bun-webkit-windows-${{ matrix.arch }}${{ matrix.suffix }} | ||
path: bun-webkit.tar.gz | ||
release: | ||
name: release | ||
permissions: | ||
contents: write | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 90 | ||
needs: | ||
- linux | ||
- macos | ||
- windows | ||
steps: | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-linux-amd64 | ||
path: ${{runner.temp}}/bun-webkit-linux-amd64 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-linux-arm64 | ||
path: ${{runner.temp}}/bun-webkit-linux-arm64 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-linux-amd64-debug | ||
path: ${{runner.temp}}/bun-webkit-linux-amd64-debug | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-linux-arm64-debug | ||
path: ${{runner.temp}}/bun-webkit-linux-arm64-debug | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-macos-arm64 | ||
path: ${{runner.temp}}/bun-webkit-macos-arm64 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-macos-arm64-debug | ||
path: ${{runner.temp}}/bun-webkit-macos-arm64-debug | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-macos-arm64-lto | ||
path: ${{runner.temp}}/bun-webkit-macos-arm64-lto | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-macos-amd64 | ||
path: ${{runner.temp}}/bun-webkit-macos-amd64 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-macos-amd64-debug | ||
path: ${{runner.temp}}/bun-webkit-macos-amd64-debug | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-macos-amd64-lto | ||
path: ${{runner.temp}}/bun-webkit-macos-amd64-lto | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-linux-amd64-lto | ||
path: ${{runner.temp}}/bun-webkit-linux-amd64-lto | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-linux-arm64-lto | ||
path: ${{runner.temp}}/bun-webkit-linux-arm64-lto | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-windows-amd64 | ||
path: ${{runner.temp}}/bun-webkit-windows-amd64 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: bun-webkit-windows-amd64-debug | ||
name: bun-webkit-windows-amd64-debug | ||
path: ${{runner.temp}}/bun-webkit-windows-amd64-debug | ||
- name: Rename files | ||
run: | | ||
mv ${{runner.temp}}/bun-webkit-linux-amd64/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-linux-amd64.tar.gz | ||
mv ${{runner.temp}}/bun-webkit-linux-arm64/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-linux-arm64.tar.gz | ||
mv ${{runner.temp}}/bun-webkit-macos-arm64/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-macos-arm64.tar.gz | ||
mv ${{runner.temp}}/bun-webkit-macos-amd64/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-macos-amd64.tar.gz | ||
mv ${{runner.temp}}/bun-webkit-linux-amd64-debug/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-linux-amd64-debug.tar.gz | ||
mv ${{runner.temp}}/bun-webkit-linux-arm64-debug/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-linux-arm64-debug.tar.gz | ||
mv ${{runner.temp}}/bun-webkit-macos-arm64-debug/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-macos-arm64-debug.tar.gz | ||
mv ${{runner.temp}}/bun-webkit-macos-amd64-debug/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-macos-amd64-debug.tar.gz | ||
mv ${{runner.temp}}/bun-webkit-macos-arm64-lto/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-macos-arm64-lto.tar.gz | ||
mv ${{runner.temp}}/bun-webkit-macos-amd64-lto/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-macos-amd64-lto.tar.gz | ||
mv ${{runner.temp}}/bun-webkit-linux-arm64-lto/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-linux-arm64-lto.tar.gz | ||
mv ${{runner.temp}}/bun-webkit-linux-amd64-lto/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-linux-amd64-lto.tar.gz | ||
mv ${{runner.temp}}/bun-webkit-windows-amd64/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-windows-amd64.tar.gz | ||
mv ${{runner.temp}}/bun-webkit-windows-amd64-debug/bun-webkit.tar.gz ${{runner.temp}}/bun-webkit-windows-amd64-debug.tar.gz | ||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
id: release | ||
with: | ||
generate_release_notes: true | ||
tag_name: "autobuild-${{github.sha}}" | ||
files: | | ||
${{runner.temp}}/bun-webkit-linux-amd64-debug.tar.gz | ||
${{runner.temp}}/bun-webkit-linux-arm64-debug.tar.gz | ||
${{runner.temp}}/bun-webkit-macos-arm64-debug.tar.gz | ||
${{runner.temp}}/bun-webkit-macos-amd64-debug.tar.gz | ||
${{runner.temp}}/bun-webkit-linux-amd64.tar.gz | ||
${{runner.temp}}/bun-webkit-linux-arm64.tar.gz | ||
${{runner.temp}}/bun-webkit-macos-arm64.tar.gz | ||
${{runner.temp}}/bun-webkit-macos-amd64.tar.gz | ||
${{runner.temp}}/bun-webkit-linux-amd64-lto.tar.gz | ||
${{runner.temp}}/bun-webkit-linux-arm64-lto.tar.gz | ||
${{runner.temp}}/bun-webkit-macos-arm64-lto.tar.gz | ||
${{runner.temp}}/bun-webkit-macos-amd64-lto.tar.gz | ||
${{runner.temp}}/bun-webkit-windows-amd64.tar.gz | ||
${{runner.temp}}/bun-webkit-windows-amd64-debug.tar.gz |