CI Images

From Thrive Developer Wiki
Revision as of 09:08, 28 May 2021 by Hhyyrylainen (talk | contribs) (Created page with "Category:Programming This page has instructions on making new CI podman images. These are the rough steps: # Update the relevant Dockerfiles in "docker/ci" or the lint...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


This page has instructions on making new CI podman images.

These are the rough steps:

  1. Update the relevant Dockerfiles in "docker/ci" or the lint folder
  2. Run build with docker or podman: "podman build ci" (in the correct folder)
  3. Tag the result with the needed name. For example: "podman tag 6534b9b707fe9c1f05bc62545eb36ba14d3d6ddeff04870fef402c1ba08a4d0e thrive/godot-ci:v8"
  4. Save the image as a file (replace ":" with "_" in the file name): "podman save thrive/godot-ci:v8 -o godot-ci_v8.tar.xz"
  5. Now upload the created file to the right folder in the devcenter, the first part of the name before the slash needs to be a folder in: https://dev.revolutionarygamesstudio.com/files/CI/Images with the file from the previous step uploaded in that sub folder
  6. Now you can modify the CI configuration to specify the new image and it should work