Skip to content

Commit 55c65bb

Browse files
authored
build: set uid and gid
So it looks UID/GID environment variables aren't set in the GitHub action environment.
1 parent be6e586 commit 55c65bb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

e2e_tests/run-e2e-tests.sh

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ start_docker_compose_for_maeve_csms() {
1717
cd "$CSMS_DIR"
1818
(cd config/certificates && make)
1919
chmod 755 $CSMS_DIR/config/certificates/csms.key
20+
export UID=$(id -u)
21+
export GID=$(id -g)
2022
docker-compose up -d
2123
if [ $? -eq 0 ]; then
2224
echo "Docker Compose started successfully"

0 commit comments

Comments
 (0)