diff --git a/.github/workflows/release-homebrew.yaml b/.github/workflows/release-homebrew.yaml index aab8bf762..21e3cd16e 100644 --- a/.github/workflows/release-homebrew.yaml +++ b/.github/workflows/release-homebrew.yaml @@ -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 @@ -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) diff --git a/.github/workflows/release-installer.yaml b/.github/workflows/release-installer.yaml index f14a3db49..6356460c8 100644 --- a/.github/workflows/release-installer.yaml +++ b/.github/workflows/release-installer.yaml @@ -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 @@ -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 @@ -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 / @@ -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