149 lines
No EOL
5.3 KiB
YAML
149 lines
No EOL
5.3 KiB
YAML
name: Test apt-ostree Build
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, master ]
|
|
pull_request:
|
|
branches: [ main, master ]
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
APT_OSTREE_VERSION: "0.1.0"
|
|
|
|
jobs:
|
|
test-apt-ostree-build:
|
|
name: Test apt-ostree Build (with existing libostree)
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ubuntu:latest
|
|
steps:
|
|
- name: Setup build environment
|
|
shell: bash
|
|
run: |
|
|
apt update -y
|
|
apt install -y git curl pkg-config build-essential
|
|
|
|
# Install Rust using rustup to get the latest version
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
. ~/.cargo/env
|
|
|
|
# Set default toolchain for rustup
|
|
rustup default stable
|
|
|
|
# Verify Rust version
|
|
rustc --version
|
|
cargo --version
|
|
|
|
- name: Checkout repository manually
|
|
run: |
|
|
# Clone the repository manually instead of using actions/checkout
|
|
git clone https://git.raines.xyz/robojerk/apt-ostree.git /tmp/apt-ostree
|
|
cp -r /tmp/apt-ostree/* .
|
|
cp -r /tmp/apt-ostree/.* . 2>/dev/null || true
|
|
|
|
- name: Install build dependencies
|
|
run: |
|
|
apt update -y
|
|
apt install -y libglib2.0-dev libzstd-dev libssl-dev pkg-config curl
|
|
|
|
# Add Forgejo repository for libostree packages
|
|
curl -fsSL https://git.raines.xyz/api/packages/robojerk/debian/repository.key -o /etc/apt/keyrings/forgejo-robojerk.asc
|
|
echo "deb [signed-by=/etc/apt/keyrings/forgejo-robojerk.asc] https://git.raines.xyz/api/packages/robojerk/debian noble main" | tee -a /etc/apt/sources.list.d/forgejo.list
|
|
apt update -y
|
|
|
|
# Install libostree packages from Forgejo
|
|
apt install -y libostree-dev=2025.2-1~noble1 libostree-1-1=2025.2-1~noble1
|
|
|
|
# Install additional Debian build dependencies
|
|
apt install -y debhelper-compat dh-cargo cargo rustc libcurl4-gnutls-dev libsystemd-dev libmount-dev libselinux1-dev
|
|
|
|
- name: Check libostree version
|
|
run: |
|
|
pkg-config --modversion ostree-1 || echo "libostree not found"
|
|
dpkg -l | grep libostree || echo "No libostree packages installed"
|
|
|
|
- name: Debug - List files before testing
|
|
run: |
|
|
echo "Current directory: $(pwd)"
|
|
echo "Files in current directory:"
|
|
ls -la
|
|
echo "Files in src/ (if it exists):"
|
|
ls -la src/ 2>/dev/null || echo "src/ directory does not exist"
|
|
echo "Files in debian/ (if it exists):"
|
|
ls -la debian/ 2>/dev/null || echo "debian/ directory does not exist"
|
|
|
|
- name: Test cargo build
|
|
shell: bash
|
|
run: |
|
|
# Source Rust environment for the build
|
|
. ~/.cargo/env
|
|
cargo build --release
|
|
echo "✅ Cargo build successful"
|
|
|
|
- name: Test cargo test
|
|
shell: bash
|
|
run: |
|
|
# Source Rust environment for the tests
|
|
. ~/.cargo/env
|
|
cargo test
|
|
echo "✅ Cargo tests successful"
|
|
|
|
- name: Test package build (if libostree available)
|
|
shell: bash
|
|
run: |
|
|
# Source Rust environment and ensure default toolchain is set
|
|
. ~/.cargo/env
|
|
rustup default stable
|
|
# Set environment variables for the entire build process
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
export CARGO_HOME="$HOME/.cargo"
|
|
export RUSTUP_HOME="$HOME/.rustup"
|
|
|
|
if pkg-config --exists ostree-1; then
|
|
echo "✅ libostree found, testing package build..."
|
|
if [ -f "debian/build.sh" ]; then
|
|
echo "Using debian/build.sh..."
|
|
chmod +x debian/build.sh
|
|
./debian/build.sh
|
|
else
|
|
echo "Using dpkg-buildpackage directly..."
|
|
dpkg-buildpackage -us -uc -b
|
|
fi
|
|
echo "✅ Package build successful"
|
|
else
|
|
echo "⚠️ Skipping package build - libostree not available"
|
|
fi
|
|
|
|
- name: Test apt-ostree functionality
|
|
shell: bash
|
|
run: |
|
|
# Source Rust environment
|
|
. ~/.cargo/env
|
|
|
|
# Test if apt-ostree binary was built (check both locations)
|
|
if [ -f "target/release/apt-ostree" ]; then
|
|
echo "✅ apt-ostree binary found in target/release/"
|
|
BINARY_PATH="target/release/apt-ostree"
|
|
elif [ -f "debian/cargo/target/release/apt-ostree" ]; then
|
|
echo "✅ apt-ostree binary found in debian/cargo/target/release/"
|
|
BINARY_PATH="debian/cargo/target/release/apt-ostree"
|
|
else
|
|
echo "❌ apt-ostree binary not found"
|
|
exit 1
|
|
fi
|
|
|
|
# Test basic functionality
|
|
$BINARY_PATH --version || echo "⚠️ Version command failed"
|
|
$BINARY_PATH --help || echo "⚠️ Help command failed"
|
|
|
|
echo "✅ Basic functionality tests completed"
|
|
|
|
- name: Success Summary
|
|
run: |
|
|
echo "=== Test Summary ==="
|
|
echo "✅ Cargo build successful"
|
|
echo "✅ Cargo tests passed"
|
|
echo "✅ apt-ostree binary created"
|
|
echo "✅ Basic functionality verified"
|
|
echo ""
|
|
echo "🎯 Ready for production build!" |