-
Notifications
You must be signed in to change notification settings - Fork 3
#50: Add CI checks for other operating systems #51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#50: Add CI checks for other operating systems #51
Conversation
It is clear why the test don't work at the moment. You mount the host directory to a different path in the CentOS container. You need to mount it to the same path as on the host. |
Please also check the readme. The prerequisite section got a bit messy in the last PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe clean up after installing with apt and yum to keep the docker image smaller.and if not yet done, use --no-install-recommended
ci_tests/Ubuntu18.04/Dockerfile
Outdated
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \ | ||
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null | ||
|
||
RUN apt-get -y update && apt-get -y install docker-ce docker-ce-cli containerd.io |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here is the clean missing
ci_tests/Ubuntu20.04/Dockerfile
Outdated
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \ | ||
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null | ||
|
||
RUN apt-get -y update && apt-get -y install docker-ce docker-ce-cli containerd.io |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here is the clean missing
No description provided.