Skip to content

Commit

Permalink
ci: remove unused commands
Browse files Browse the repository at this point in the history
Signed-off-by: Anqi Pang <[email protected]>
  • Loading branch information
AnqiPang committed Mar 9, 2023
1 parent 35ad886 commit 50017d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/release-homebrew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ jobs:
make
- name: Multiple instances of Finch test
run: |
pwd
# start two Finch VM instances
./_output/bin/finch vm init
finch vm init
Expand Down Expand Up @@ -191,20 +190,18 @@ jobs:
make
- name: Multiple instances of Finch test
run: |
pwd
# start two Finch VM instances
./_output/bin/finch vm init
finch vm init
# start a container in each VM instance
./_output/bin/finch pull alpine
finch pull alpine
./_output/bin/finch run -d --name test-ctr1 alpine
finch run -d --name test-ctr2 alpine
./_output/bin/finch run --name test-ctr1 alpine
finch run --name test-ctr2 alpine
./_output/bin/finch vm stop && ./_output/bin/finch vm remove
finch vm stop && finch vm remove
- name: Clean up multiple instance test
run: |
pwd
sudo rm -rf ./_output
export HOMEBREW_NO_INSTALL_FROM_API=1
cd $(brew --repo homebrew/cask)
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/release-installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ jobs:
- name: Download from S3
run: |
aws s3 cp s3://${{ secrets.INSTALLER_PRIVATE_BUCKET_NAME }}/Finch-${GITHUB_REF_NAME}-aarch64.pkg Finch-${GITHUB_REF_NAME}-aarch64.pkg
pwd
- name: Silently install
run: sudo installer -pkg Finch-${GITHUB_REF_NAME}-aarch64.pkg -target /
- name: Build project
Expand All @@ -93,7 +92,6 @@ jobs:
finch vm stop && finch vm remove
- name: Clean up multiple instance test
run: |
pwd
sudo rm -rf ./_output
echo 'y' | sudo bash /Applications/Finch/uninstall.sh
rm -rf Finch-${GITHUB_REF_NAME}-aarch64.pkg
Expand Down Expand Up @@ -152,7 +150,6 @@ jobs:
- name: Download from S3
run: |
aws s3 cp s3://${{ secrets.INSTALLER_PRIVATE_BUCKET_NAME }}/Finch-${GITHUB_REF_NAME}-x86_64.pkg Finch-${GITHUB_REF_NAME}-x86_64.pkg
pwd
- name: Silently install
run: |
sudo installer -pkg Finch-${GITHUB_REF_NAME}-x86_64.pkg -target /
Expand All @@ -176,7 +173,6 @@ jobs:
finch vm stop && finch vm remove
- name: Clean up multiple instance test
run: |
pwd
sudo rm -rf ./_output
echo 'y' | sudo bash /Applications/Finch/uninstall.sh
rm -rf Finch-${GITHUB_REF_NAME}-x86_64.pkg
Expand Down

0 comments on commit 50017d3

Please sign in to comment.