You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So far I have tested the Github runner. Here are my notes based on a trial run inside an Ubuntu micro VM:
Install runner app
This is straight from the Github instructions:
# Create a folder
$ mkdir actions-runner && cd actions-runner# Download the latest runner package
$ curl -o actions-runner-linux-x64-2.311.0.tar.gz -L https://github.com/actions/runner/releases/download/v2.311.0/actions-runner-linux-x64-2.311.0.tar.gz# Optional: Validate the hash
$ echo "29fc8cf2dab4c195bb147384e7e2c94cfd4d4022c793b346a6175435265aa278 actions-runner-linux-x64-2.311.0.tar.gz" | shasum -a 256 -c# Extract the installer
$ tar xzf ./actions-runner-linux-x64-2.311.0.tar.gz
Configure
There are two mandatory config fields, url and token (these will be env variables to the image). The url can either be for a repo or an org, based on user preference. That doesn't matter for the VM.
If we want to run as root, need to allow that explicitly. Maybe should add a regular user and run as that?
Required by: https://git.ourworld.tf/threefold_coop/circle_prodmgmt_grid/issues/2
So far I have tested the Github runner. Here are my notes based on a trial run inside an Ubuntu micro VM:
Install runner app
This is straight from the Github instructions:
Configure
There are two mandatory config fields, url and token (these will be env variables to the image). The url can either be for a repo or an org, based on user preference. That doesn't matter for the VM.
If we want to run as root, need to allow that explicitly. Maybe should add a regular user and run as that?
Run
The text was updated successfully, but these errors were encountered: