Skip to content

Commit

Permalink
try not using target
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Apr 9, 2024
1 parent f21bdaa commit 0bd741b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ const ci = {
run: [
// output fs space before and after building
"df -h",
"cargo build --release --locked --target=x86_64-unknown-linux-gnu -p deno",
"cargo build --release --locked -p deno",
"df -h",
].join("\n"),
},
Expand All @@ -720,7 +720,7 @@ const ci = {
with: {
name:
"deno-${{ matrix.os }}-${{ matrix.arch }}-${{ github.event.number }}",
path: "target/x86_64-unknown-linux-gnu/release/deno",
path: "target/release/deno",
},
},
{
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ jobs:
github.repository == 'denoland/deno'))
run: |-
df -h
cargo build --release --locked --target=x86_64-unknown-linux-gnu -p deno
cargo build --release --locked -p deno
df -h
- name: Upload PR artifact (linux)
if: |-
Expand All @@ -355,7 +355,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: 'deno-${{ matrix.os }}-${{ matrix.arch }}-${{ github.event.number }}'
path: target/x86_64-unknown-linux-gnu/release/deno
path: target/release/deno
- name: Pre-release (linux)
if: |-
!(matrix.skip) && (matrix.os == 'linux' &&
Expand Down

0 comments on commit 0bd741b

Please sign in to comment.