From f21bdaad42f3f996948e8ddc0e0b158313a8c083 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 9 Apr 2024 15:01:22 -0400 Subject: [PATCH] try this --- .github/workflows/ci.generate.ts | 6 +++--- .github/workflows/ci.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 67f4a5b377d59b..3d21b324d6699b 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -678,7 +678,7 @@ const ci = { run: [ // output fs space before and after building "df -h", - "cargo build --locked -p deno", + "cargo build --locked -- -p deno", "df -h", ].join("\n"), env: { CARGO_PROFILE_DEV_DEBUG: 0 }, @@ -703,7 +703,7 @@ const ci = { run: [ // output fs space before and after building "df -h", - "cargo build --release --locked --all-targets", + "cargo build --release --locked --target=x86_64-unknown-linux-gnu -p deno", "df -h", ].join("\n"), }, @@ -720,7 +720,7 @@ const ci = { with: { name: "deno-${{ matrix.os }}-${{ matrix.arch }}-${{ github.event.number }}", - path: "target/release/deno", + path: "target/x86_64-unknown-linux-gnu/release/deno", }, }, { diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cdecd03357cefd..402e0c3eb07a0b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -332,7 +332,7 @@ jobs: if: '!(matrix.skip) && (matrix.job == ''test'' && matrix.profile == ''debug'')' run: |- df -h - cargo build --locked -p deno + cargo build --locked -- -p deno df -h env: CARGO_PROFILE_DEV_DEBUG: 0 @@ -343,7 +343,7 @@ jobs: github.repository == 'denoland/deno')) run: |- df -h - cargo build --release --locked --all-targets + cargo build --release --locked --target=x86_64-unknown-linux-gnu -p deno df -h - name: Upload PR artifact (linux) if: |- @@ -355,7 +355,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: 'deno-${{ matrix.os }}-${{ matrix.arch }}-${{ github.event.number }}' - path: target/release/deno + path: target/x86_64-unknown-linux-gnu/release/deno - name: Pre-release (linux) if: |- !(matrix.skip) && (matrix.os == 'linux' &&