Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/checks_docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build-docker:
name: Build Docker image
runs-on: warp-ubuntu-latest-x64-32x
runs-on: warp-ubuntu-latest-x64-16x

steps:
- name: Checkout sources
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/op_rbuilder_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
jobs:
lint_and_test:
name: Lint and test
runs-on: warp-ubuntu-latest-x64-32x
runs-on: warp-ubuntu-latest-x64-16x
env:
# Set features for the Makefile
FEATURES: ${{ matrix.features }}
Expand Down
24 changes: 22 additions & 2 deletions .github/workflows/op_rbuilder_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
matrix:
configs:
- target: x86_64-unknown-linux-gnu
runner: warp-ubuntu-latest-x64-32x
runner: warp-ubuntu-latest-x64-16x
- target: aarch64-unknown-linux-gnu
runner: warp-ubuntu-latest-arm64-32x
# Paused until docker is pre-installed https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
platforms: ${{ matrix.configs.platform }}
push: true
tags: ghcr.io/${{ github.repository }}:${{ env.VERSION }}-${{ env.PLATFORM }}
tags: ${{ steps.meta.outputs.tags }}
build-args: |
FEATURES=${{ github.event.inputs.features || '' }}
RBUILDER_BIN=op-rbuilder
Expand Down Expand Up @@ -299,3 +299,23 @@ jobs:
- name: inspect image
run: |
docker buildx imagetools inspect ghcr.io/${{ github.repository }}:${{ env.VERSION }}

compare-builds:
name: Compare raw vs. container binary
needs:
- extract-version
- publish-container-image
runs-on: ${{ matrix.configs.runner }}
env:
VERSION: ${{ needs.extract-version.outputs.VERSION }}
permissions:
contents: read
packages: write
strategy:
matrix:
configs:
- platform: linux/amd64
runner: warp-ubuntu-latest-x64-16x
- platform: linux/arm64
runner: warp-ubuntu-latest-arm64-16x
steps:
2 changes: 1 addition & 1 deletion .github/workflows/tdx_quote_provider_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
matrix:
configs:
- target: x86_64-unknown-linux-gnu
runner: warp-ubuntu-latest-x64-32x
runner: warp-ubuntu-latest-x64-16x
- target: aarch64-unknown-linux-gnu
runner: warp-ubuntu-latest-arm64-32x
# Paused until docker is pre-installed https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.2.6"
version = "0.2.7"
edition = "2024"
rust-version = "1.86"
license = "MIT OR Apache-2.0"
Expand Down
Loading