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
4 changes: 1 addition & 3 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# they will be requested for review when someone opens a pull request.
* @dvush @ZanCorDX @ferranbt @liamaharon @metachris
/crates/ @dvush @ZanCorDX @ferranbt @liamaharon
/.github/ @dvush @ZanCorDX @ferranbt @liamaharon @metachris @sukoneck
* @ferranbt @SozinM @avalonche
71 changes: 1 addition & 70 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
merge_group:
push:
branches: [develop]
branches: [main]

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -62,75 +62,6 @@ jobs:
- name: Test
run: make test

- name: Validate config files
run: make validate-config

integration:
name: Integration tests
runs-on: warp-ubuntu-latest-x64-32x
strategy:
matrix:
toolchain:
- stable
features:
- ""
steps:
- name: Checkout sources
uses: actions/checkout@v4

# https://github.com/dtolnay/rust-toolchain
- name: Setup rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.toolchain }}

- name: Download builder playground
uses: flashbots/flashbots-toolchain@v0.1
with:
builder-playground: v0.1.3

# https://github.com/swatinem/rust-cache
- name: Run Swatinem/rust-cache@v2
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true

# https://github.com/Mozilla-Actions/sccache-action
- name: Run sccache-action
uses: mozilla-actions/sccache-action@v0.0.9

- name: Set sccache env vars
run: |
echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV

- name: Build the rbuilder
run: cargo build --features="${{ matrix.features }}"

- name: Run the playground
run: builder-playground &

- name: Run integration tests with flags
run: cargo test --features="${{ matrix.features }}" --package rbuilder --lib -- integration --test-threads=1
env:
PLAYGROUND: TRUE

- name: Aggregate playground logs
# This steps fails if the test fails early and the playground logs dir has not been created
if: ${{ failure() }}
run: |
mkdir /tmp/playground-logs
mv $HOME/.playground/devnet/logs /tmp/playground-logs
mv integration_logs /tmp/playground-logs

- name: Archive playground logs
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: playground-logs
path: /tmp/playground-logs
retention-days: 5

op-integration:
name: Op Integration tests
runs-on: warp-ubuntu-latest-x64-32x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/checks_docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
merge_group:
push:
branches: [develop]
branches: [main]

jobs:
build-docker:
Expand Down
212 changes: 0 additions & 212 deletions .github/workflows/release-op.yaml

This file was deleted.

Loading
Loading