From b4433b9f2c56efe3b4618ddddd83d3369c04ea6b Mon Sep 17 00:00:00 2001 From: asonix Date: Wed, 7 Feb 2024 21:14:56 -0600 Subject: [PATCH] Hmm --- .forgejo/workflows/publish.yaml | 72 ++++++++++++++++----------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml index 5db6356..be45c44 100644 --- a/.forgejo/workflows/publish.yaml +++ b/.forgejo/workflows/publish.yaml @@ -7,42 +7,45 @@ env: REGISTRY_IMAGE: asonix/pictrs jobs: - clippy: - runs-on: docker - container: - image: docker.io/node:20-bookworm - steps: - - - name: Checkout pict-rs - uses: https://github.com/actions/checkout@v4 - - - name: Setup Rust - uses: https://git.asonix.dog/asonix/pict-rs/.forgejo/actions/prepare-rust@main - - - name: Clippy - run: | - cargo clippy --no-default-features -- -D warnings - cargo clippy --no-default-features --features io-uring -- -D warnings + # clippy: + # runs-on: docker + # container: + # image: docker.io/node:20-bookworm + # steps: + # - + # name: Checkout pict-rs + # uses: https://github.com/actions/checkout@v4 + # - + # name: Setup Rust + # uses: https://git.asonix.dog/asonix/pict-rs/.forgejo/actions/prepare-rust@main + # - + # name: Clippy + # run: | + # cargo clippy --no-default-features -- -D warnings + # cargo clippy --no-default-features --features io-uring -- -D warnings - tests: - runs-on: docker - container: - image: docker.io/node:20-bookworm - steps: - - - name: Checkout pict-rs - uses: https://github.com/actions/checkout@v4 - - - name: Setup Rust - uses: https://git.asonix.dog/asonix/pict-rs/.forgejo/actions/prepare-rust@main - - - name: Test - run: cargo test + # tests: + # runs-on: docker + # container: + # image: docker.io/node:20-bookworm + # steps: + # - + # name: Checkout pict-rs + # uses: https://github.com/actions/checkout@v4 + # - + # name: Setup Rust + # uses: https://git.asonix.dog/asonix/pict-rs/.forgejo/actions/prepare-rust@main + # - + # name: Test + # run: cargo test build: - needs: - - clippy - - tests + # needs: + # - clippy + # - tests + runs-on: docker + container: + image: docker.io/node:20-bookworm strategy: matrix: fail-fast: false @@ -56,9 +59,6 @@ jobs: - target: aarch64-unknown-linux-musl artifact: linux-arm64v8 platform: linux/arm64 - runs-on: docker - container: - image: docker.io/node:20-bookworm steps: - name: Checkout pict-rs