Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Apr 9, 2024
1 parent f7a37f9 commit f21bdaa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand All @@ -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"),
},
Expand All @@ -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",
},
},
{
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |-
Expand All @@ -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' &&
Expand Down

0 comments on commit f21bdaa

Please sign in to comment.