# GitHub Actions CI/CD Configuration for Towerops Agent # Builds and publishes Docker image to GitHub Container Registry name: CI on: push: branches: - main - '**' tags: - 'v*' pull_request: branches: - main concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} CARGO_TERM_COLOR: always RUSTFLAGS: -C link-arg=-fuse-ld=lld jobs: test: name: Test runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable with: toolchain: "1.91" components: rustfmt, clippy - name: Cache apt packages uses: awalsh128/cache-apt-pkgs-action@latest with: packages: protobuf-compiler lld version: 1.0 - name: Rust cache uses: Swatinem/rust-cache@v2 with: shared-key: "rust-cache" cache-on-failure: true cache-all-crates: true - name: Check run: cargo check --release - name: Format check run: cargo fmt -- --check - name: Test run: cargo test # Temporarily disabled: # - name: Clippy # run: cargo clippy -- -D warnings build-branch: name: Build (Branch) needs: test runs-on: ubuntu-latest if: github.event_name == 'push' && github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/') permissions: contents: read packages: write steps: - name: Checkout uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Log in to GitHub Container Registry uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Extract branch name id: branch run: | BRANCH_NAME=${GITHUB_REF#refs/heads/} # Sanitize branch name for Docker tag (replace / with -) SAFE_BRANCH=$(echo "$BRANCH_NAME" | sed 's/\//-/g') echo "name=$SAFE_BRANCH" >> $GITHUB_OUTPUT - name: Build and push uses: docker/build-push-action@v6 with: context: . push: true provenance: false build-args: | BUILDKIT_INLINE_CACHE=1 tags: | ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.branch.outputs.name }} ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:sha-${{ github.sha }} cache-from: | type=gha,scope=build-amd64 type=gha,scope=release-amd64 type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:cache-amd64 type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest cache-to: | type=gha,scope=build-amd64,mode=max type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:cache-amd64,mode=max # Generate version info for release builds version: name: Version runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') outputs: version: ${{ steps.version.outputs.version }} short_sha: ${{ steps.version.outputs.short_sha }} is_tag: ${{ steps.version.outputs.is_tag }} steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 - name: Generate version info id: version run: | if [[ "$GITHUB_REF" == refs/tags/v* ]]; then TAG=${GITHUB_REF#refs/tags/} VERSION=${TAG#v} echo "is_tag=true" >> $GITHUB_OUTPUT else VERSION=$(git describe --tags --always --dirty=-modified | sed 's/^v//') echo "is_tag=false" >> $GITHUB_OUTPUT fi SHORT_SHA=${GITHUB_SHA::7} echo "version=$VERSION" >> $GITHUB_OUTPUT echo "short_sha=$SHORT_SHA" >> $GITHUB_OUTPUT # Build architecture-specific images in parallel (native runners) build-release: name: Build (${{ matrix.arch }}) needs: [test, version] runs-on: ${{ matrix.runner }} if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') permissions: contents: read packages: write strategy: fail-fast: false matrix: include: - platform: linux/amd64 arch: amd64 runner: ubuntu-latest - platform: linux/arm64 arch: arm64 runner: ubuntu-24.04-arm steps: - name: Checkout uses: actions/checkout@v4 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Log in to GitHub Container Registry uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v6 with: context: . platforms: ${{ matrix.platform }} push: true provenance: false build-args: | VERSION=${{ needs.version.outputs.version }} BUILDKIT_INLINE_CACHE=1 tags: | ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ needs.version.outputs.version }}-${{ matrix.arch }} cache-from: | type=gha,scope=release-${{ matrix.arch }} type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:cache-${{ matrix.arch }} type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest cache-to: | type=gha,scope=release-${{ matrix.arch }},mode=max type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:cache-${{ matrix.arch }},mode=max # Create multi-arch manifest after both builds complete manifest: name: Create Manifest needs: [version, build-release] runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') permissions: contents: read packages: write steps: - name: Log in to GitHub Container Registry uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Create and push manifests run: | VERSION="${{ needs.version.outputs.version }}" SHORT_SHA="${{ needs.version.outputs.short_sha }}" IMAGE="${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}" # Create manifest for version tag docker buildx imagetools create -t ${IMAGE}:${VERSION} \ ${IMAGE}:${VERSION}-amd64 \ ${IMAGE}:${VERSION}-arm64 # Create manifest for latest docker buildx imagetools create -t ${IMAGE}:latest \ ${IMAGE}:${VERSION}-amd64 \ ${IMAGE}:${VERSION}-arm64 # Create manifest for sha tag docker buildx imagetools create -t ${IMAGE}:sha-${SHORT_SHA} \ ${IMAGE}:${VERSION}-amd64 \ ${IMAGE}:${VERSION}-arm64 - name: Summary run: | echo "### Released version: ${{ needs.version.outputs.version }}" >> $GITHUB_STEP_SUMMARY echo "Multi-architecture build (amd64, arm64) - built in parallel" >> $GITHUB_STEP_SUMMARY echo "Tags pushed:" >> $GITHUB_STEP_SUMMARY echo "- \`latest\`" >> $GITHUB_STEP_SUMMARY echo "- \`${{ needs.version.outputs.version }}\`" >> $GITHUB_STEP_SUMMARY echo "- \`sha-${{ needs.version.outputs.short_sha }}\`" >> $GITHUB_STEP_SUMMARY