Skip to content
Merged
Show file tree
Hide file tree
Changes from 36 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
08242d4
added CI for docker workflow
x3c41a Dec 10, 2025
805a5b2
simplified workflow, reused just commands
x3c41a Dec 10, 2025
464dd44
doubled timeout
x3c41a Dec 10, 2025
8db6577
use ubuntu-latest directly for Docker suppor
x3c41a Dec 10, 2025
3ac97ff
added docker check
x3c41a Dec 10, 2025
675b40b
simplify docker verification
x3c41a Dec 10, 2025
3aff147
trigger workflow on ci_cd branch pushes
x3c41a Dec 10, 2025
47cf3d6
add protobuf-compiler dependency
x3c41a Dec 10, 2025
b85e4e6
add libclang dependency
x3c41a Dec 10, 2025
0b777e4
add wasm32 target for runtime compilation
x3c41a Dec 10, 2025
f6a0e53
add rust-src component for wasm compilation
x3c41a Dec 10, 2025
64264d5
use host networking for IPFS Docker on Linux/CI
x3c41a Dec 10, 2025
ca12545
fix Docker networking and add zombienet debugging
x3c41a Dec 11, 2025
a5e204c
fix: use absolute paths for zombienet and bulletin binary
x3c41a Dec 11, 2025
310a547
renamed
x3c41a Dec 11, 2025
c03485f
removed docker verification step - not needed anymore
x3c41a Dec 11, 2025
8bd3e97
Merge branch 'just_docker' into ci_cd
x3c41a Dec 11, 2025
99cbf16
Update .github/workflows/integration-test.yml
x3c41a Dec 11, 2025
eafe553
Update .github/workflows/integration-test.yml
x3c41a Dec 11, 2025
39f13fa
added another test as step
x3c41a Dec 11, 2025
fe9dbdf
updated on push branches
x3c41a Dec 11, 2025
093055d
removed branhces from on pull_request
x3c41a Dec 11, 2025
bf10520
added ci_cd back, modified network_args (added ports)
x3c41a Dec 11, 2025
dd19e8f
removed flag in wget
x3c41a Dec 11, 2025
589bea6
added docker setup
x3c41a Dec 11, 2025
913d51a
added missing dependency
x3c41a Dec 11, 2025
9916426
commented out first test - debugging second
x3c41a Dec 12, 2025
500e522
fixed commit
x3c41a Dec 12, 2025
1a6af76
reverted import, increased node version to 22
x3c41a Dec 12, 2025
5a66383
uncommented first test
x3c41a Dec 12, 2025
2a28be5
reverted branches
x3c41a Dec 12, 2025
395be51
Update .github/workflows/integration-test.yml
x3c41a Dec 12, 2025
36e187c
removed local set-up
x3c41a Dec 12, 2025
6945ee7
Update examples/justfile
bkontur Dec 12, 2025
67a2a29
parametrized run-authorize-and-store
x3c41a Dec 12, 2025
c23ec0e
removed duplicate
x3c41a Dec 12, 2025
d2a6cd4
Update examples/justfile
x3c41a Dec 12, 2025
4fab99c
Removed older TODO
bkontur Dec 12, 2025
4586875
Extract node version
bkontur Dec 12, 2025
aac0a2a
Actually use CI_IMAGE and align with check.yml
bkontur Dec 12, 2025
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
68 changes: 68 additions & 0 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Integration Tests

on:
push:
branches: ["main", "release-*"]
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
CI_IMAGE: "paritytech/ci-unified:bullseye-1.88.0-2025-06-27-v202507112050"

jobs:
integration-tests:
name: Integration Tests
runs-on: ubuntu-latest
timeout-minutes: 60

steps:
- name: Checkout sources
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-unknown-unknown
components: rust-src

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler libclang-dev

- name: Rust cache
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
cache-all-crates: true

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: examples/package.json

- name: Install just
run: cargo install just --locked || true

- name: Download zombienet
run: |
curl -L \
-H "Authorization: token ${{ github.token }}" \
-o zombienet-linux-x64 \
"https://github.com/paritytech/zombienet/releases/download/v1.3.138/zombienet-linux-x64"
chmod +x zombienet-linux-x64
echo "ZOMBIENET_BINARY=$GITHUB_WORKSPACE/zombienet-linux-x64" >> $GITHUB_ENV

- name: Run authorize and store (PAPI, smoldot)
working-directory: examples
run: just run-authorize-and-store "smoldot"

- name: Run authorize and store (PAPI, RPC node)
working-directory: examples
run: just run-authorize-and-store "ws"
Loading
Loading