v15.0.0-rc
There are currently no pipelines.
To run a merge request pipeline, the jobs in the CI/CD configuration file must be configured to run in merge request pipelines and you must have sufficient permissions in the source project.
Two Factor Authentication (2FA) as been enabled for all git.whoi.edu users. For instructions on how to set up 2FA, follow the instructions on this page, or click here for a step-by-step walk-through.
Once you have 2FA setup, you may need to create an Access Token to pull and push with git. You will not be able to authenticate with git using your password once you enable 2FA. See this link for how to set up and use a Personal Access Token.
The decision to enable 2FA for all users is for added security. Oct 30th, some users experienced account lockout due to bad actors. 2FA will help prevent such incidents in the future. Thank you.
tdma
range slot notation now supports python negative indexing (relative to last slot). This means range strings must use colons only. All unit tests using the dash notation e.g. 0-100:2
have been updated to 0:100:2
.tdma
range strings now support negative index notation
0:-2:2
with num_slots=10
will expand to [0, 2, 4, 6, 8]
-1:-5:1
with num_slots=10
will expand to [0, 1, 2, 3, 4, 5, 9]
To run a merge request pipeline, the jobs in the CI/CD configuration file must be configured to run in merge request pipelines and you must have sufficient permissions in the source project.