Skip to content

Commit

Permalink
buck2/github: replace --out-dir with --artifact-dir
Browse files Browse the repository at this point in the history
Summary: It was renamed long time ago: rust-lang/cargo#6790

Differential Revision: D66011214
  • Loading branch information
KapJI authored and facebook-github-bot committed Nov 15, 2024
1 parent b525768 commit 3ae6fe0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build_debug/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ runs:
- name: Build buck2 binary (debug)
run: |-
mkdir $RUNNER_TEMP/artifacts
cargo build --bin=buck2 -Z unstable-options --out-dir=$RUNNER_TEMP/artifacts
cargo build --bin=buck2 -Z unstable-options --artifact-dir=$RUNNER_TEMP/artifacts
shell: bash
2 changes: 1 addition & 1 deletion .github/actions/build_release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ runs:
- name: Build buck2 binary (release)
run: |-
mkdir $RUNNER_TEMP/artifacts
cargo build --bin=buck2 --release -Z unstable-options --out-dir=$RUNNER_TEMP/artifacts
cargo build --bin=buck2 --release -Z unstable-options --artifact-dir=$RUNNER_TEMP/artifacts
shell: bash

0 comments on commit 3ae6fe0

Please sign in to comment.