feat: split POST Object into separate operation from PutObject #1411
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: | |
| pull_request: | |
| branches: | |
| - main | |
| - 'feat/**' | |
| merge_group: | |
| types: [checks_requested] | |
| schedule: | |
| - cron: '0 0 * * 0' # at midnight of each sunday | |
| workflow_dispatch: | |
| jobs: | |
| skip-check: | |
| permissions: | |
| actions: write | |
| contents: read | |
| runs-on: ubuntu-latest | |
| outputs: | |
| should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
| steps: | |
| - id: skip_check | |
| uses: fkirc/skip-duplicate-actions@v5 | |
| with: | |
| cancel_others: true | |
| paths_ignore: '["*.md"]' | |
| python: | |
| needs: skip-check | |
| if: needs.skip-check.outputs.should_skip != 'true' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: taiki-e/install-action@just | |
| - uses: astral-sh/setup-uv@v3 | |
| with: | |
| enable-cache: true | |
| - run: just ci-python | |
| rust: | |
| needs: skip-check | |
| if: needs.skip-check.outputs.should_skip != 'true' | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| toolchain: | |
| - 1.86.0 # MSRV | |
| - stable | |
| - nightly | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: taiki-e/install-action@just | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| components: rustfmt, clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: just ci-rust | |
| cross-test: | |
| needs: skip-check | |
| if: needs.skip-check.outputs.should_skip != 'true' | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - windows-latest | |
| - macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: taiki-e/install-action@just | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@v2 | |
| - run: just test | |
| wasm-test: | |
| needs: skip-check | |
| if: needs.skip-check.outputs.should_skip != 'true' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: taiki-e/install-action@just | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@v2 | |
| - uses: taiki-e/install-action@wasm-pack | |
| - uses: taiki-e/install-action@wasm-bindgen-cli | |
| - name: wasm-pack test | |
| run: | | |
| cd crates/s3s-wasm | |
| wasm-pack test --node | |
| mint-proxy-minio: | |
| name: e2e (mint, s3s-proxy, minio) | |
| needs: skip-check | |
| if: needs.skip-check.outputs.should_skip != 'true' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| - run: docker pull minio/mint:edge | |
| - run: docker pull minio/minio:latest | |
| - run: just install s3s-proxy | |
| - run: ./scripts/e2e-mint.sh | |
| - run: ./scripts/report-mint.py /tmp/mint/log.json | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: mint-proxy-minio.logs | |
| path: ./target/s3s-proxy.log | |
| e2e-fs: | |
| name: e2e (s3s-e2e, s3s-fs) | |
| needs: skip-check | |
| if: needs.skip-check.outputs.should_skip != 'true' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| - run: just install s3s-e2e | |
| - run: just install s3s-fs | |
| - run: ./scripts/e2e-fs.sh --filter '^Basic' | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: e2e-fs.logs | |
| path: ./target/s3s-fs.log | |
| e2e-minio: | |
| name: e2e (s3s-e2e, minio) | |
| needs: skip-check | |
| if: needs.skip-check.outputs.should_skip != 'true' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| - run: docker pull minio/minio:latest | |
| - run: just install s3s-e2e | |
| - run: ./scripts/e2e-minio.sh |