Files
cursor-api/.github/workflows/build.yml
2024-12-27 06:23:32 +08:00

219 lines
5.8 KiB
YAML

name: Build
on:
push:
tags:
- 'v*'
jobs:
build:
name: Build ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- os: ubuntu-latest
targets: x86_64-unknown-linux-gnu
- os: windows-latest
targets: x86_64-pc-windows-msvc
- os: macos-latest
targets: x86_64-apple-darwin,aarch64-apple-darwin
steps:
- uses: actions/checkout@v4.2.2
- name: Setup Node.js
uses: actions/setup-node@v4.1.0
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: 'scripts/package.json'
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.targets }}
- name: Install Linux dependencies (x86_64)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
protobuf-compiler \
pkg-config \
libssl-dev \
openssl
# 设置 OpenSSL 环境变量
echo "OPENSSL_DIR=/usr" >> $GITHUB_ENV
echo "OPENSSL_LIB_DIR=/usr/lib/x86_64-linux-gnu" >> $GITHUB_ENV
echo "OPENSSL_INCLUDE_DIR=/usr/include/openssl" >> $GITHUB_ENV
echo "PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig" >> $GITHUB_ENV
- name: Build Linux x86_64 (Dynamic)
if: runner.os == 'Linux'
run: bash scripts/build.sh
- name: Build Linux x86_64 (Static)
if: runner.os == 'Linux'
run: bash scripts/build.sh --static
- name: Install macOS dependencies
if: runner.os == 'macOS'
run: |
brew install \
protobuf \
pkg-config \
openssl@3
echo "OPENSSL_DIR=$(brew --prefix openssl@3)" >> $GITHUB_ENV
echo "PKG_CONFIG_PATH=$(brew --prefix openssl@3)/lib/pkgconfig" >> $GITHUB_ENV
- name: Install Windows dependencies
if: runner.os == 'Windows'
run: |
choco install -y protoc
choco install -y openssl
# 刷新环境变量
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
# 设置 OpenSSL 环境变量
echo "OPENSSL_DIR=C:\Program Files\OpenSSL" >> $env:GITHUB_ENV
echo "PKG_CONFIG_PATH=C:\Program Files\OpenSSL\lib\pkgconfig" >> $env:GITHUB_ENV
- name: Build (Dynamic)
if: runner.os == 'Windows'
shell: pwsh
run: ./scripts/build.ps1
- name: Build (Static)
if: runner.os == 'Windows'
shell: pwsh
run: ./scripts/build.ps1 -Static
- name: Build macOS (Dynamic)
if: runner.os == 'macOS'
run: bash scripts/build.sh
- name: Build macOS (Static)
if: runner.os == 'macOS'
run: bash scripts/build.sh --static
# - name: Verify build artifacts
# run: |
# if [ ! -d "release" ] || [ -z "$(ls -A release)" ]; then
# echo "Error: No build artifacts found in release directory"
# exit 1
# fi
- name: Upload artifacts
uses: actions/upload-artifact@v4.5.0
with:
name: binaries-${{ matrix.os }}
path: release/*
retention-days: 1
build-freebsd:
name: Build FreeBSD
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- name: Build on FreeBSD
uses: vmactions/freebsd-vm@v1.1.5
with:
usesh: true
prepare: |
# 设置持久化的环境变量
echo 'export SSL_CERT_FILE=/etc/ssl/cert.pem' >> /root/.profile
echo 'export PATH="/usr/local/bin:$PATH"' >> /root/.profile
# 安装基础依赖
pkg update
pkg install -y \
git \
curl \
node20 \
www/npm \
protobuf \
ca_root_nss \
bash \
gmake \
pkgconf \
openssl
export SSL_CERT_FILE=/etc/ssl/cert.pem
# 克隆代码(确保在正确的目录)
cd /root
git clone $GITHUB_SERVER_URL/$GITHUB_REPOSITORY .
# 安装 rustup 和 Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain stable
# 设置持久化的 Rust 环境变量
echo '. "$HOME/.cargo/env"' >> /root/.profile
# 添加所需的目标支持
. /root/.profile
rustup target add x86_64-unknown-freebsd
rustup component add rust-src
run: |
# 加载环境变量
. /root/.profile
# 构建
echo "构建动态链接版本..."
/usr/local/bin/bash scripts/build.sh
echo "构建静态链接版本..."
/usr/local/bin/bash scripts/build.sh --static
- name: Upload artifacts
uses: actions/upload-artifact@v4.5.0
with:
name: binaries-freebsd
path: release/*
retention-days: 1
release:
name: Create Release
needs: [build, build-freebsd]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4.2.2
- name: Download all artifacts
uses: actions/download-artifact@v4.1.8
with:
path: artifacts
- name: Prepare release assets
run: |
mkdir release
cd artifacts
for dir in binaries-*; do
cp -r "$dir"/* ../release/
done
- name: Generate checksums
run: |
cd release
sha256sum * > SHA256SUMS.txt
- name: Create Release
uses: softprops/action-gh-release@v2.2.0
with:
files: |
release/*
draft: false
prerelease: false
generate_release_notes: true
fail_on_unmatched_files: true