File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Updating a Generic IOC to the Latest Copier Template
2
+
3
+ This requires that you have copier in your path which you can do by activating a virtual environment and installing it.
4
+
5
+ ``` bash
6
+ pip install copier
7
+ ```
8
+
9
+ Then you can run the following command to update your generic IOC to the latest template, this example for ioc-adaravis.
10
+
11
+ ``` bash
12
+ git clone ioc-adaravis --recursive
13
+ cd ioc-adaravis
14
+ git checkout -b update-template
15
+ copier update --trust
16
+ cd ibek-support
17
+ checkout main
18
+ cd ..
19
+ git add .
20
+ git commit -m " Update to latest template"
21
+ git push -u origin update-template
22
+ ```
23
+
24
+ Now check the CI runs as expected. You may also verify locally with:
25
+
26
+ ``` bash
27
+ ./build.sh
28
+ ./tests/run_tests.sh
29
+ ```
You can’t perform that action at this time.
0 commit comments