Skip to content

Commit

Permalink
ci: update forc-explore CI related steps (FuelLabs#2926)
Browse files Browse the repository at this point in the history
1/2 of FuelLabs#2609 
accompanying issue in `forc-explorer` repo:
FuelLabs/forc-explorer#1

This PR removes the distribution of forc-explore binary

Will mark this PR as ready for review once `forc-explore` is confirmed
to work in the new repo.
  • Loading branch information
eightfilms authored Oct 31, 2022
1 parent 567ac2e commit 18ed7f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ jobs:
run: |
cargo install --debug --path ./forc-plugins/forc-fmt
cargo install --debug --path ./forc-plugins/forc-lsp
cargo install --debug --path ./forc-plugins/forc-explore
cargo install --debug --path ./forc-plugins/forc-client
cargo install --debug forc-explore
- name: Install mdbook-forc-documenter
uses: actions-rs/cargo@v1
with:
Expand Down Expand Up @@ -380,7 +380,6 @@ jobs:
cargo install toml-cli
./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} forc/Cargo.toml
./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} forc-plugins/forc-client/Cargo.toml
./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} forc-plugins/forc-explore/Cargo.toml
./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} forc-plugins/forc-fmt/Cargo.toml
./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} forc-plugins/forc-lsp/Cargo.toml
./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} forc-pkg/Cargo.toml
Expand Down Expand Up @@ -615,12 +614,6 @@ jobs:
command: install
args: --profile=release --path ./forc-plugins/forc-lsp

- name: Install Forc-Explore
uses: actions-rs/cargo@v1
with:
command: install
args: --profile=release --path ./forc-plugins/forc-explore

- name: Install Forc-Client
uses: actions-rs/cargo@v1
with:
Expand All @@ -643,7 +636,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-explore forc-deploy forc-run forc-doc; do
for binary in forc forc-fmt forc-lsp forc-deploy forc-run forc-doc; do
cp $(which ${binary}) ./forc-binaries
done
tar -czvf $ZIP_FILE_NAME ./forc-binaries
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ jobs:
run: |
cargo install --debug --path ./forc-plugins/forc-fmt
cargo install --debug --path ./forc-plugins/forc-lsp
cargo install --debug --path ./forc-plugins/forc-explore
cargo install --debug --path ./forc-plugins/forc-client
cargo install --debug forc-client
cargo install --debug forc-explore
- name: Install mdbook-forc-documenter
uses: actions-rs/cargo@v1
with:
Expand Down

0 comments on commit 18ed7f5

Please sign in to comment.