0a8bfc9bcc
CI/CD Pipeline / Check if frontend-only change (push) Has been skipped
CI/CD Pipeline / Build Production API Image (push) Has been skipped
CI/CD Pipeline / Build Production Web Image (push) Has been skipped
CI/CD Pipeline / Build Production Worker Image (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Build Staging API Image (push) Failing after 24s
CI/CD Pipeline / Build Staging Web Image (push) Failing after 29s
CI/CD Pipeline / Build Staging Worker Image (push) Failing after 29s
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Has been skipped
CI/CD Pipeline / ACR Image Cleanup (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Has been skipped
CI/CD Pipeline / Staging API Integration Tests (push) Has been skipped
CI/CD Pipeline / Frontend Unit Tests (push) Successful in 3m23s
CI/CD Pipeline / Validate Code Quality And Tests (push) Successful in 3m24s
CI/CD Pipeline / Frontend Lint (push) Successful in 3m49s
CI/CD Pipeline / Unit Tests (push) Successful in 4m7s
CI/CD Pipeline / Integration Tests (push) Successful in 1m32s
Co-authored-by: xiaoxia <dev@xiaoxiajianji.com> Co-committed-by: xiaoxia <dev@xiaoxiajianji.com>
25 lines
934 B
Bash
Executable File
25 lines
934 B
Bash
Executable File
#!/bin/sh
|
|
# CI 公共步骤:安装 ffmpeg
|
|
set +e
|
|
if command -v ffmpeg > /dev/null 2>&1; then
|
|
echo "ffmpeg already installed: $(ffmpeg -version | head -1)"
|
|
exit 0
|
|
fi
|
|
if command -v apt-get > /dev/null 2>&1; then
|
|
apt-get update -qq && apt-get install -y -qq ffmpeg
|
|
elif command -v yum > /dev/null 2>&1; then
|
|
yum install -y -q epel-release 2>/dev/null
|
|
yum install -y -q ffmpeg 2>/dev/null
|
|
if [ $? -ne 0 ] && command -v dnf > /dev/null 2>&1; then
|
|
dnf install -y -q --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-$(rpm -E %rhel).noarch.rpm 2>/dev/null
|
|
dnf install -y -q ffmpeg 2>/dev/null
|
|
fi
|
|
elif command -v dnf > /dev/null 2>&1; then
|
|
dnf install -y -q ffmpeg 2>/dev/null
|
|
fi
|
|
if command -v ffmpeg > /dev/null 2>&1; then
|
|
echo "ffmpeg installed successfully: $(ffmpeg -version | head -1)"
|
|
else
|
|
echo "Warning: ffmpeg installation failed or not available, some tests may be skipped"
|
|
fi
|