Skip to content

Commit

Permalink
fix: fix install script test
Browse files Browse the repository at this point in the history
  • Loading branch information
salamaashoush committed May 27, 2024
1 parent 55f560f commit f3b1cfb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/install_script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
matrix:
docker_image:
- arm64v8/ubuntu
- arm32v7/ubuntu
name: Test against latest release (ARM)
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -66,9 +65,6 @@ jobs:
- run: "sudo apt-get install -y ${{ matrix.shell }}"
name: Install ${{matrix.shell}} using apt-get
if: matrix.setup.os == 'ubuntu'
- run: "brew update && brew install ${{ matrix.shell }}"
name: Update formulae and install ${{matrix.shell}} using Homebrew
if: matrix.setup.os == 'macos'
- run: |
if [ -f ~/.bashrc ]; then
cp ~/.bashrc ~/.bashrc.bak
Expand Down
8 changes: 4 additions & 4 deletions scripts/test_installation_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ $SHELL_TO_RUN -c "

$SHELL_TO_RUN -c "
. $PROFILE_FILE
pactup install 4.11.0
pactup ls | grep 4.11.0
pactup install 4.11
pactup ls | grep 4.11
echo 'pactup ls worked.'
"

$SHELL_TO_RUN -c "
. $PROFILE_FILE
pactup use 4.11.0
pact --version | grep 4.11.0
pactup use 4.11
pact --version | grep 4.11
echo 'pact --version worked.'
"

0 comments on commit f3b1cfb

Please sign in to comment.