Fossil SCM
Put a "sleep 1" into "make container-run" before the step that shows the container logs to ensure we show everything it says on startup. Added this on seeing just the first line of output due to a race condition, so I missed the generated admin password.
Commit
4429e10f6d259666847cf6f5b8c5fed0186a745c8649c17e38eb1fa090e674f7
Parent
a9e862b88716a83…
1 file changed
+1
+1
| --- Makefile.in | ||
| +++ Makefile.in | ||
| @@ -143,6 +143,7 @@ | ||
| 143 | 143 | --cap-drop NET_RAW \ |
| 144 | 144 | --cap-drop SETFCAP \ |
| 145 | 145 | --cap-drop SETPCAP \ |
| 146 | 146 | --detach --publish 8080:8080 \ |
| 147 | 147 | $(DRFLAGS) fossil:@FOSSIL_CI_PFX@ |
| 148 | + @sleep 1 # decrease likelihood of logging race condition | |
| 148 | 149 | docker container logs fossil-@FOSSIL_CI_PFX@ |
| 149 | 150 |
| --- Makefile.in | |
| +++ Makefile.in | |
| @@ -143,6 +143,7 @@ | |
| 143 | --cap-drop NET_RAW \ |
| 144 | --cap-drop SETFCAP \ |
| 145 | --cap-drop SETPCAP \ |
| 146 | --detach --publish 8080:8080 \ |
| 147 | $(DRFLAGS) fossil:@FOSSIL_CI_PFX@ |
| 148 | docker container logs fossil-@FOSSIL_CI_PFX@ |
| 149 |
| --- Makefile.in | |
| +++ Makefile.in | |
| @@ -143,6 +143,7 @@ | |
| 143 | --cap-drop NET_RAW \ |
| 144 | --cap-drop SETFCAP \ |
| 145 | --cap-drop SETPCAP \ |
| 146 | --detach --publish 8080:8080 \ |
| 147 | $(DRFLAGS) fossil:@FOSSIL_CI_PFX@ |
| 148 | @sleep 1 # decrease likelihood of logging race condition |
| 149 | docker container logs fossil-@FOSSIL_CI_PFX@ |
| 150 |