Skip to content

Commit

Permalink
Temporarily disable manual install tests
Browse files Browse the repository at this point in the history
  • Loading branch information
plengauer authored Dec 15, 2024
1 parent ac8f4cd commit b28a4d8
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -209,35 +209,35 @@ jobs:
fi
' | sudo docker run -v $(pwd)/package.deb:/root/package.deb -v $(pwd)/package.rpm:/root/package.rpm --rm --network=host -i --entrypoint=/bin/sh ${{ matrix.image }} -e
install-manual-user:
needs: [ smoke ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cat INSTALL.sh | sh -e
- run: type otel.sh
# install-manual-user:
# needs: [ smoke ]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - run: cat INSTALL.sh | sh -e
# - run: type otel.sh

install-manual-os:
needs: [ prepare-images, smoke ]
runs-on: ubuntu-latest
strategy:
matrix:
image: ${{ fromJSON(needs.prepare-images.outputs.images) }}
steps:
- uses: actions/checkout@v4
- run: |
{
echo '
if type apt-get; then apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install wget curl jq gawk sudo
elif type dnf; then dnf -y install wget jq gawk sudo
elif type yum; then yum -y install wget jq gawk sudo
elif type zypper; then zypper --non-interactive install wget jq gawk sudo
else exit 1
fi
'
cat INSTALL.sh
echo type otel.sh
} | sudo docker run --rm --network=host -i --entrypoint=/bin/sh ${{ matrix.image }} -e
# install-manual-os:
# needs: [ prepare-images, smoke ]
# runs-on: ubuntu-latest
# strategy:
# matrix:
# image: ${{ fromJSON(needs.prepare-images.outputs.images) }}
# steps:
# - uses: actions/checkout@v4
# - run: |
# {
# echo '
# if type apt-get; then apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install wget curl jq gawk sudo
# elif type dnf; then dnf -y install wget jq gawk sudo
# elif type yum; then yum -y install wget jq gawk sudo
# elif type zypper; then zypper --non-interactive install wget jq gawk sudo
# else exit 1
# fi
# '
# cat INSTALL.sh
# echo type otel.sh
# } | sudo docker run --rm --network=host -i --entrypoint=/bin/sh ${{ matrix.image }} -e

linux-shell:
needs: [ prepare-images, prepare-shells, smoke ]
Expand Down

0 comments on commit b28a4d8

Please sign in to comment.