Build pipeline question #1703
Replies: 1 comment
-
Sure - it's github actions under the hood, coupled with a python script. Most builds live here: And the image I use to run scripts lives here: Taking this script as an example: You defined how it runs (in this case, a dispatch - means I click a button, but that'll transition to monthly automated soon). Under steps I define what happens. The key take-away is I copy all of the files (git clone) out of the geoBoundaryBot repository, and then run the gbBuildCheck.py file. That's really about it - obviously a lot of nuance, but that should hopefully get you started :) |
Beta Was this translation helpful? Give feedback.
-
@DanRunfola I'm curious about the bot / tests / and build script pipeline. Are you spinning up your own vm with all of your specific dependencies for process? Is it a GitHub action with a separate compute resource for each test with dependencies? I'm currently processing a build pipeline and want to get rid of my arcpy dependency and I really like what you are doing with the automation, but I don't fully understand how the docker image is being used / deployed.
Beta Was this translation helpful? Give feedback.
All reactions