Ensure that the thread tests only look at their own messages #1669
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [master] | |
| tags: ["*"] | |
| pull_request: | |
| branches: ["*"] | |
| schedule: | |
| - cron: '0 0 * * 3' | |
| env: | |
| # Bump if the cached instance is broken due to a runner image update | |
| RUST_CACHE_KEY: rustler-2026-05 | |
| jobs: | |
| format: | |
| name: Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt | |
| - name: Install Erlang/Elixir | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: "27" | |
| elixir-version: "1.18" | |
| - name: Check cargo fmt | |
| run: cargo fmt --all -- --check | |
| - name: Check mix format (rustler_mix) | |
| working-directory: rustler_mix | |
| run: mix format --check-formatted | |
| - name: Check mix format (rustler_tests) | |
| working-directory: rustler_tests | |
| run: mix format --check-formatted | |
| build: | |
| name: Build ${{matrix.os}} ${{matrix.toolchain}} | |
| runs-on: ${{matrix.os}}-latest | |
| strategy: | |
| matrix: | |
| os: [ubuntu, windows, macos] | |
| toolchain: [stable, nightly] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: ${{matrix.toolchain}} | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| shared-key: ${{ env.RUST_CACHE_KEY }} | |
| - run: cargo build | |
| clippy: | |
| name: Clippy ${{matrix.os}} | |
| runs-on: ${{matrix.os}}-latest | |
| needs: [build] | |
| strategy: | |
| matrix: | |
| os: [ubuntu, windows, macos] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| shared-key: ${{ env.RUST_CACHE_KEY }} | |
| save-if: false | |
| - run: cargo clippy --all-targets --all-features -- -D warnings | |
| test: | |
| name: OTP ${{matrix.pair.erlang}} / Elixir ${{matrix.pair.elixir}} / Rust ${{matrix.rust}} / OS ${{matrix.os}} | |
| needs: [build] | |
| strategy: | |
| matrix: | |
| pair: | |
| - { erlang: "29", elixir: "1.19" } | |
| - { erlang: "28", elixir: "1.19", latest: true } | |
| - { erlang: "27", elixir: "1.19" } | |
| - { erlang: "27", elixir: "1.18" } | |
| - { erlang: "27", elixir: "1.17" } | |
| - { erlang: "26", elixir: "1.18" } | |
| - { erlang: "26", elixir: "1.17" } | |
| - { erlang: "26", elixir: "1.16" } | |
| - { erlang: "26", elixir: "1.15" } | |
| - { erlang: "25", elixir: "1.15" } | |
| rust: | |
| - stable | |
| - nightly | |
| os: | |
| - macos | |
| - windows | |
| - ubuntu | |
| runs-on: ${{matrix.os}}-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Install Erlang/Elixir | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: ${{matrix.pair.erlang}} | |
| elixir-version: ${{matrix.pair.elixir}} | |
| version-type: ${{ matrix.pair.strict && 'strict' || 'loose' }} | |
| - name: Install Rust ${{matrix.rust}} toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{matrix.rust}} | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| shared-key: ${{ env.RUST_CACHE_KEY }} | |
| save-if: false | |
| - run: cargo test | |
| - name: Test rustler_mix | |
| working-directory: rustler_mix | |
| run: | | |
| mix deps.get | |
| mix test | |
| - name: Test rustler_tests | |
| working-directory: rustler_tests | |
| run: | | |
| mix deps.get | |
| mix test | |
| - name: Test mix project with example created from template | |
| working-directory: rustler_mix | |
| run: ./test.sh | |
| if: "startsWith(matrix.os, 'ubuntu') && matrix.pair.latest" |