exr 1.74.1

Read and write OpenEXR files without any unsafe code
Documentation
name: Rust

on:
  push:
    branches: [ master, dev ]
  pull_request:
    branches: [ master, dev ]

jobs:
  fmt:
    runs-on: ubuntu-latest
    name: check rustfmt formatting
    timeout-minutes: 10

    steps:
      - uses: actions/checkout@v2
      - uses: dtolnay/rust-toolchain@nightly
      - name: Install rustfmt component
        run: rustup component add --toolchain nightly rustfmt
      - name: Verify formatting
        run: cargo +nightly fmt --all -- --check

  ubuntu:
    runs-on: ubuntu-latest
    name: test on ubuntu
    timeout-minutes: 30

    steps:
    - uses: actions/checkout@v2
    - uses: dtolnay/rust-toolchain@stable
    - name: Cache Cargo Dependencies
      uses: Swatinem/rust-cache@v1.3.0
    - name: Build without default features
      run: cargo +stable build --no-default-features --verbose
    - name: Run tests without default features
      run: cargo +stable test --no-default-features --verbose
    - name: Build with rayon feature
      run: cargo +stable build --features rayon --verbose
    - name: Run tests with rayon feature
      run: cargo +stable test --features rayon --verbose


  macos:
    runs-on: macos-latest
    name: test on mac os
    timeout-minutes: 30

    steps:
      - uses: actions/checkout@v2
      - uses: dtolnay/rust-toolchain@stable
      - name: Cache Cargo Dependencies
        uses: Swatinem/rust-cache@v1.3.0
      - name: Build without default features
        run: cargo +stable build --no-default-features --verbose
      - name: Run tests without default features
        run: cargo +stable test --no-default-features --verbose
      - name: Build with rayon feature
        run: cargo +stable build --features rayon --verbose
      - name: Run tests with rayon feature
        run: cargo +stable test --features rayon --verbose

  verify-msrv:
    strategy:
      matrix:
        os: [ubuntu-latest]
    runs-on: ${{ matrix.os }}
    name: verify minimum supported rust version without cache (takes longer, but caching produces unexpected behaviour)
    timeout-minutes: 30

    # we are using the `cargo-msrv` app
    # https://github.com/foresterre/cargo-msrv

    steps:
      - uses: actions/checkout@v2
      - uses: dtolnay/rust-toolchain@stable

      - name: Install foresterre/cargo-msrv
        run: cargo +stable install cargo-msrv

      - uses: dtolnay/rust-toolchain@nightly
      - name: Generate Cargo.lock with minimal-version dependencies
        run: cargo -Zminimal-versions generate-lockfile

      - name: Verify the Rustc version declared in `Cargo.toml` with `minimal-versions`
        run: cargo-msrv verify

  # github actions does not support big endian systems directly, but it does support QEMU.
  # so we use cross-rs, which uses QEMU internally.
  big-endian:
    runs-on: ubuntu-latest
    name: test on emulated big endian system
    timeout-minutes: 90 # todo just make tests faster wtf

    # we are using the cross project for cross compilation:
    # https://github.com/cross-rs/cross

    steps:
      - uses: actions/checkout@v2
      - uses: dtolnay/rust-toolchain@stable

      - name: Install or use cached cross-rs/cross
        uses: baptiste0928/cargo-install@v1
        with:
          crate: cross

      - name: Cache Cargo Dependencies
        uses: Swatinem/rust-cache@v1.3.0

      - name: Start Docker
        run: sudo systemctl start docker

      # https://github.com/cross-rs/cross#supported-targets
      - name: Cross-Compile project to powerpc-unknown-linux-gnu without rayon feature
        run: cross build --target powerpc-unknown-linux-gnu --no-default-features --verbose

      - name: Cross-Run Tests in powerpc-unknown-linux-gnu without rayon feature
        run: cross test --target powerpc-unknown-linux-gnu --no-default-features --verbose

      - name: Cross-Compile project to powerpc-unknown-linux-gnu with rayon feature
        run: cross build --target powerpc-unknown-linux-gnu --features rayon --verbose

      - name: Cross-Run Tests in powerpc-unknown-linux-gnu with rayon feature
        run: cross test --target powerpc-unknown-linux-gnu --features rayon --verbose

  wasm32:
    runs-on: ubuntu-latest
    name: test on wasm32
    timeout-minutes: 60

    steps:
    - uses: actions/checkout@v2
    - uses: dtolnay/rust-toolchain@stable

    - name: Cache Cargo Dependencies
      uses: Swatinem/rust-cache@v1.3.0

    - name: Add wasm32 Target
      run: rustup target add wasm32-unknown-unknown

    - name: Build without default features
      run: cargo +stable build --verbose --no-default-features --target wasm32-unknown-unknown

    - name: Run tests without default features
      run: cargo +stable test --verbose --no-default-features

  sde:
    runs-on: ubuntu-latest
    timeout-minutes: 90

    strategy:
      fail-fast: false
      matrix:
        include:
          - name: avx2
            test: avx2
            feature: avx2-tests
            # Haswell: first microarchitecture with AVX2+FMA.
            # `-C target-feature` unset explicitly to force runtime dispatching
            sde_cpu: "-hsw"

          - name: sse2
            test: sse2
            feature: sse2-tests
            # Merom: the lowest 64-bit chip SDE models. Has SSE2 but no AVX,
            # `-C target-feature` unset explicitly to force runtime dispatching
            sde_cpu: "-mrm"

    name: test ${{ matrix.name }} using simd cpu emulator

    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - uses: Swatinem/rust-cache@v2

      - name: Setup Intel SDE
        uses: petarpetrovt/setup-sde@v5.0
        with:
          environmentVariableName: SDE_PATH
          sdeVersion: 10.8.0

      - name: Check SDE
        run: |

          "$SDE_PATH"/sde64 --version

      - name: Build ${{ matrix.name }} integration test only
        run: |

          set -euo pipefail

          cargo test --test "${{ matrix.test }}" --features "${{ matrix.feature }}" --no-run --message-format=json \
            | jq -r 'select(.reason == "compiler-artifact" and .target.name == "${{ matrix.test }}" and .executable != null) | .executable' \
            | tail -n 1 > /tmp/simd-test-bin

          test -s /tmp/simd-test-bin
          cat /tmp/simd-test-bin

      - name: Run ${{ matrix.name }} integration test under Intel SDE
        run: |

          set -euo pipefail

          TEST_BIN="$(cat /tmp/simd-test-bin)"
          "$SDE_PATH"/sde64 "${{ matrix.sde_cpu }}" -- "$TEST_BIN" --nocapture

  js:
    runs-on: ubuntu-latest
    name: test on wasm32 via javascript api
    timeout-minutes: 60

    steps:
      - uses: actions/checkout@v4

      - name: Setup Rust
        uses: dtolnay/rust-toolchain@stable
        with:
          targets: wasm32-unknown-unknown

      - name: Setup Node.js
        uses: actions/setup-node@v4
        with:
          node-version: '20'
          registry-url: 'https://registry.npmjs.org'

      - name: Cache Cargo Dependencies
        uses: Swatinem/rust-cache@v2
        with:
          workspaces: exrs-wasm

      - name: Install wasm-pack
        run: cargo +stable install wasm-pack

      # todo: cache?
      - name: Install
        run: npm ci
        working-directory: exrs-wasm/js

      - name: Build and test wasm package
        run: npm run test
        working-directory: exrs-wasm/js