Add docker image caching; split build job into build, test, check format jobs; add docs job #6

Merged
jturnerusa merged 8 commits from feature/split-ci-into-more-jobs into master 2025-12-12 23:19:40 -06:00
2 changed files with 9 additions and 1 deletions
Showing only changes of commit 59c060df54 - Show all commits

View File

@@ -31,4 +31,6 @@ USER gentooligan
WORKDIR /workspace
ENTRYPOINT /bin/bash
ENTRYPOINT ["/entrypoint.sh"]
CMD ["/bin/bash"]

6
.docker/entrypoint.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env sh
source /etc/profile
source /lib/gentoo/functions.sh
exec "$@"