Testing workflow
Some checks failed
Multi-Platform Release Build / build (false, linux/arm64, native) (push) Successful in 5m34s
Multi-Platform Release Build / build (true, gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 cmake nasm, map[CARGO_TARGET_X86_64_PC_WINDOWS_GNU_LINKER:x86_64-w64-mingw32-gcc CC_x86_64_pc_windows_gnu:x86_64-w64-mingw32-gcc], linux/amd64, x86_64-pc-windows-gnu) (push) Failing after 7m35s
Multi-Platform Release Build / build (true, gcc-x86-64-linux-gnu libc6-dev-amd64-cross, map[CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER:x86_64-linux-gnu-gcc], linux/amd64, x86_64-unknown-linux-gnu) (push) Failing after 7m23s
Multi-Platform Release Build / create-release (push) Has been skipped
Some checks failed
Multi-Platform Release Build / build (false, linux/arm64, native) (push) Successful in 5m34s
Multi-Platform Release Build / build (true, gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 cmake nasm, map[CARGO_TARGET_X86_64_PC_WINDOWS_GNU_LINKER:x86_64-w64-mingw32-gcc CC_x86_64_pc_windows_gnu:x86_64-w64-mingw32-gcc], linux/amd64, x86_64-pc-windows-gnu) (push) Failing after 7m35s
Multi-Platform Release Build / build (true, gcc-x86-64-linux-gnu libc6-dev-amd64-cross, map[CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER:x86_64-linux-gnu-gcc], linux/amd64, x86_64-unknown-linux-gnu) (push) Failing after 7m23s
Multi-Platform Release Build / create-release (push) Has been skipped
This commit is contained in:
parent
60a1a87d04
commit
d80bc544dc
1 changed files with 10 additions and 6 deletions
|
|
@ -17,11 +17,14 @@ jobs:
|
||||||
- target: x86_64-unknown-linux-gnu
|
- target: x86_64-unknown-linux-gnu
|
||||||
cross: true
|
cross: true
|
||||||
platform: linux/amd64
|
platform: linux/amd64
|
||||||
|
deps: "gcc-x86-64-linux-gnu libc6-dev-amd64-cross"
|
||||||
|
env:
|
||||||
|
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER: x86_64-linux-gnu-gcc
|
||||||
|
|
||||||
- target: x86_64-pc-windows-gnu
|
- target: x86_64-pc-windows-gnu
|
||||||
cross: true
|
cross: true
|
||||||
platform: linux/amd64
|
platform: linux/amd64
|
||||||
deps: "build-essential gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64"
|
deps: "gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 cmake nasm"
|
||||||
env:
|
env:
|
||||||
CC_x86_64_pc_windows_gnu: x86_64-w64-mingw32-gcc
|
CC_x86_64_pc_windows_gnu: x86_64-w64-mingw32-gcc
|
||||||
CARGO_TARGET_X86_64_PC_WINDOWS_GNU_LINKER: x86_64-w64-mingw32-gcc
|
CARGO_TARGET_X86_64_PC_WINDOWS_GNU_LINKER: x86_64-w64-mingw32-gcc
|
||||||
|
|
@ -36,7 +39,7 @@ jobs:
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
|
|
||||||
- name: Add Rust target
|
- name: Add Rust target
|
||||||
if: matrix.target != 'native' && !matrix.container
|
if: matrix.target != 'native'
|
||||||
run: rustup target add ${{ matrix.target }}
|
run: rustup target add ${{ matrix.target }}
|
||||||
|
|
||||||
- name: Cache Rust dependencies
|
- name: Cache Rust dependencies
|
||||||
|
|
@ -73,13 +76,15 @@ jobs:
|
||||||
with:
|
with:
|
||||||
args: >
|
args: >
|
||||||
sh -c "
|
sh -c "
|
||||||
apt-get update && apt-get install -y build-essential libssl-dev pkg-config gcc-x86-64-linux-gnu &&
|
apt-get update && apt-get install -y build-essential ${{ matrix.deps }} pkg-config &&
|
||||||
rustup target add x86_64-unknown-linux-gnu &&
|
mkdir -p ~/.cargo &&
|
||||||
|
echo '[target.x86_64-unknown-linux-gnu]\nlinker = \"x86_64-linux-gnu-gcc\"' > ~/.cargo/config.toml &&
|
||||||
cargo build --release --target x86_64-unknown-linux-gnu &&
|
cargo build --release --target x86_64-unknown-linux-gnu &&
|
||||||
mkdir -p release-artifacts &&
|
mkdir -p release-artifacts &&
|
||||||
cp target/x86_64-unknown-linux-gnu/release/uptime-kuma-dashboard release-artifacts/uptime-kuma-dashboard-x86_64-unknown-linux-gnu &&
|
cp target/x86_64-unknown-linux-gnu/release/uptime-kuma-dashboard release-artifacts/uptime-kuma-dashboard-x86_64-unknown-linux-gnu &&
|
||||||
strip release-artifacts/uptime-kuma-dashboard-x86_64-unknown-linux-gnu &&
|
strip release-artifacts/uptime-kuma-dashboard-x86_64-unknown-linux-gnu &&
|
||||||
chmod +x release-artifacts/uptime-kuma-dashboard-x86_64-unknown-linux-gnu"
|
chmod +x release-artifacts/uptime-kuma-dashboard-x86_64-unknown-linux-gnu"
|
||||||
|
env: ${{ matrix.env }}
|
||||||
options: --platform ${{ matrix.platform }}
|
options: --platform ${{ matrix.platform }}
|
||||||
|
|
||||||
- name: Cross-Build Windows x86_64 Release
|
- name: Cross-Build Windows x86_64 Release
|
||||||
|
|
@ -89,7 +94,6 @@ jobs:
|
||||||
args: >
|
args: >
|
||||||
sh -c "
|
sh -c "
|
||||||
apt-get update && apt-get install -y ${{ matrix.deps }} &&
|
apt-get update && apt-get install -y ${{ matrix.deps }} &&
|
||||||
rustup target add x86_64-pc-windows-gnu &&
|
|
||||||
cargo build --release --target x86_64-pc-windows-gnu &&
|
cargo build --release --target x86_64-pc-windows-gnu &&
|
||||||
mkdir -p release-artifacts &&
|
mkdir -p release-artifacts &&
|
||||||
cp target/x86_64-pc-windows-gnu/release/uptime-kuma-dashboard.exe release-artifacts/uptime-kuma-dashboard-x86_64-pc-windows-gnu.exe &&
|
cp target/x86_64-pc-windows-gnu/release/uptime-kuma-dashboard.exe release-artifacts/uptime-kuma-dashboard-x86_64-pc-windows-gnu.exe &&
|
||||||
|
|
@ -169,5 +173,5 @@ jobs:
|
||||||
```
|
```
|
||||||
### 🏗️ Build Information
|
### 🏗️ Build Information
|
||||||
- Runner Architecture: ${{ env.RUNNER_ARCH }}
|
- Runner Architecture: ${{ env.RUNNER_ARCH }}
|
||||||
- Rust Version: 1.84.0
|
- Rust Version: 1.92.0
|
||||||
- Build Type: Release (optimized)
|
- Build Type: Release (optimized)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue