This GitHub action installs and configures cargo-maelstrom, the Maelstrom
test runner for Cargo.
Maelstrom is a suite of tools for running tests in isolated micro-containers locally on your machine or distributed across arbitrarily large clusters. Maelstrom currently has test runners for Rust, Go, and Python, with more on the way. For more information about Maelstrom in general, please see the main repository, the web site, or the documentation.
jobs:
run-tests:
name: Run Tests
# Both ubuntu-22.04 and ubuntu-24.04 are supported.
# Both x86-64 and ARM (AArch64) are supported.
# The architecture needs to be the same as the workers.
runs-on: ubuntu-24.04
steps:
# The broker needs to be installed and started before running the
# cargo-maelstrom-action. The broker must be run in the same job as cargo
# maelstrom.
- name: Install Maelstrom Broker
uses: maelstrom-software/maelstrom-broker-action@v1
- name: Start Maelstrom Broker
run: |
TEMPFILE=$(mktemp maelstrom-broker-stderr.XXXXXX)
maelstrom-broker 2> >(tee "$TEMPFILE" >&2) &
PID=$!
PORT=$( \
tail -f "$TEMPFILE" \
| awk '/\<addr: / { print $0; exit}' \
| sed -Ee 's/^.*\baddr: [^,]*:([0-9]+),.*$/\1/' \
)
echo "MAELSTROM_BROKER_PID=$PID" >> "$GITHUB_ENV"
echo "MAELSTROM_BROKER_PORT=$PORT" >> "$GITHUB_ENV"
env:
MAELSTROM_BROKER_ARTIFACT_TRANSFER_STRATEGY: github
- name: Schedule Post Handler to Kill Maelstrom Broker
uses: gacts/run-and-post-run@v1
with:
post: kill -15 $MAELSTROM_BROKER_PID
# This action installs and configures (via environment variables)
# cargo-maelstrom so it can be run simply with `cargo maelstrom`.
- name: Install and Configure cargo-maelstrom
uses: maelstrom-software/cargo-maelstrom-action@v1
- name: Check Out Repository
uses: actions/checkout@v4
# You can now run `cargo maelstrom` however you want.
- name: Run Tests
run: cargo maelstrom
# These are the worker jobs. Tests will execute on one of these workers.
maelstrom-worker:
strategy:
matrix:
worker-number: [1, 2, 3, 4]
name: Maelstrom Worker ${{ matrix.worker-number }}
# This must be the same architecture as the test-running job.
runs-on: ubuntu-24.04
steps:
- name: Install and Run Maelstrom Worker
uses: maelstrom-software/maelstrom-worker-action@v1Use this action to install
cargo-maelstrom
and configure it (via environment variables). It can then be run however you
like in the rest of your job.
There must be a separate job running the broker using the
maelstrom-broker-action,
as shown in the example above.
There also must be at least one worker running in a separate job using the
maelstrom-worker-action,
as shown in the example above.
This action installs
cargo-maelstrom
and sets some environment variables so it will successfully connect with
broker. You are then free to run cargo maelstrom however you like.
You can find documentation for running Maelstrom in GitHub here.
This project is available under the terms of either the Apache 2.0 license or the MIT license.
