Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
/forc-pkg/ @FuelLabs/tooling
/forc-plugins/ @FuelLabs/tooling
/forc-test/ @FuelLabs/tooling
/forc-tracing/ @FuelLabs/tooling
/forc-util/ @FuelLabs/tooling
/sway-lsp/ @FuelLabs/tooling
/swayfmt/ @FuelLabs/tooling
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -871,13 +871,13 @@ jobs:
- name: Strip release binaries x86_64-linux-gnu
if: matrix.job.target == 'x86_64-unknown-linux-gnu'
run: |
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-crypto forc-tx forc-submit forc-mcp forc-migrate forc-node forc-publish forc-call; do
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-tx forc-submit forc-mcp forc-migrate forc-node forc-publish forc-call; do
strip "target/${{ matrix.job.target }}/release/$BINARY"
done
- name: Strip release binaries aarch64-linux-gnu
if: matrix.job.target == 'aarch64-unknown-linux-gnu'
run: |
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-crypto forc-tx forc-submit forc-mcp forc-migrate forc-node forc-publish forc-call; do
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-tx forc-submit forc-mcp forc-migrate forc-node forc-publish forc-call; do
docker run --rm -v \
"$PWD/target:/target:Z" \
ghcr.io/cross-rs/${{ matrix.job.target }}:main \
Expand All @@ -887,7 +887,7 @@ jobs:
- name: Strip release binaries mac
if: matrix.job.os == 'macos-latest'
run: |
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-crypto forc-tx forc-submit forc-mcp forc-migrate forc-node forc-publish forc-call; do
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-tx forc-submit forc-mcp forc-migrate forc-node forc-publish forc-call; do
strip -x "target/${{ matrix.job.target }}/release/$BINARY"
done

Expand All @@ -901,7 +901,7 @@ jobs:
ZIP_FILE_NAME=forc-binaries-${{ env.PLATFORM_NAME }}_${{ env.ARCH }}.tar.gz
echo "ZIP_FILE_NAME=$ZIP_FILE_NAME" >> $GITHUB_ENV
mkdir -pv ./forc-binaries
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-crypto forc-tx forc-submit forc-mcp forc-migrate forc-node forc-publish forc-call; do
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-tx forc-submit forc-mcp forc-migrate forc-node forc-publish forc-call; do
cp "target/${{ matrix.job.target }}/release/$BINARY" ./forc-binaries
done
tar -czvf $ZIP_FILE_NAME ./forc-binaries
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Install Forc plugins
run: |
cargo install --locked --debug --path ./forc-plugins/forc-client
cargo install --locked --debug --path ./forc-plugins/forc-crypto
cargo install --locked --debug --git https://github.com/FuelLabs/forc forc-crypto
Comment thread
JoshuaBatty marked this conversation as resolved.
cargo install --locked --debug --path ./forc-plugins/forc-debug
cargo install --locked --debug --path ./forc-plugins/forc-fmt
cargo install --locked --debug --path ./forc-plugins/forc-doc
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/scripts/verify_tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,9 @@ for toml_path in \
"workspace.dependencies.forc.version" \
"workspace.dependencies.forc-pkg.version" \
"workspace.dependencies.forc-test.version" \
"workspace.dependencies.forc-tracing.version" \
"workspace.dependencies.forc-util.version" \
"workspace.dependencies.forc-plugins.version" \
"workspace.dependencies.forc-client.version" \
"workspace.dependencies.forc-crypto.version" \
"workspace.dependencies.forc-debug.version" \
"workspace.dependencies.forc-doc.version" \
"workspace.dependencies.forc-fmt.version" \
Expand Down
Loading
Loading