Skip to content

Commit

Permalink
build: set uid and gid
Browse files Browse the repository at this point in the history
So it looks UID/GID environment variables aren't set in the GitHub action environment.
  • Loading branch information
subnova authored May 6, 2024
1 parent be6e586 commit 55c65bb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions e2e_tests/run-e2e-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ start_docker_compose_for_maeve_csms() {
cd "$CSMS_DIR"
(cd config/certificates && make)
chmod 755 $CSMS_DIR/config/certificates/csms.key
export UID=$(id -u)
export GID=$(id -g)
docker-compose up -d
if [ $? -eq 0 ]; then
echo "Docker Compose started successfully"
Expand Down

0 comments on commit 55c65bb

Please sign in to comment.