Skip to content

Commit

Permalink
more investigation
Browse files Browse the repository at this point in the history
Signed-off-by: Bob Callaway <[email protected]>
  • Loading branch information
bobcallaway committed Aug 5, 2024
1 parent 6f300bc commit 3709195
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/validate-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ jobs:
php-zmq snmp pollinate libpq-dev postgresql-client powershell ruby-full \
sphinxsearch subversion mongodb-org -yq >/dev/null 2>&1 || true
apt-get remove -y 'php.*' || true
cd /usr && du -sch * .[!.]* | sort -rh
cd /usr/lib && du -sch * .[!.]* | sort -rh
cd /usr/lib/local && du -sch * .[!.]* | sort -rh
apt-get autoremove -y >/dev/null 2>&1 || true
apt-get autoclean -y >/dev/null 2>&1 || true
- name: check disk space
Expand Down
3 changes: 2 additions & 1 deletion test/e2e_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fi
echo "setting up OIDC provider"
pushd ./test/fakeoidc
oidcimg=$(ko build main.go --local)
docker network ls | grep fulcio_default || docker network create fulcio_default --label "com.docker.compose.network=fulcio_default"
docker network ls | grep fulcio_default || docker network create fulcio_default
docker run -d --rm -p 8080:8080 --network fulcio_default --name fakeoidc $oidcimg
cleanup_oidc() {
echo "cleaning up oidc"
Expand Down Expand Up @@ -66,6 +66,7 @@ for repo in rekor fulcio; do
pushd $repo
if [ "$repo" == "fulcio" ]; then
yq -i e '.networks={"fulcio_default":{ "name":"fulcio_default","external":true }}' docker-compose.yml
tail docker-compose.yml
fi
${docker_compose} up -d
echo -n "waiting up to 60 sec for system to start"
Expand Down

0 comments on commit 3709195

Please sign in to comment.