-
Notifications
You must be signed in to change notification settings - Fork 1
/
DEVELOP
31 lines (18 loc) · 798 Bytes
/
DEVELOP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Just a few pointers if you want to make changes to build-facts:
## Run the tests
$ ./go
## Run sync for Jenkins locally
$ ./lein run jenkins http://$USER:$PW@localhost:8080
## Make a new release
$ ./go make_release 1.2.3
## Bump docker versions of examples
When upgrading the examples, make sure to also re-record the traffic, so the
integration tests mimick the up-to-date version:
$ ./test/integration/record_teamcity.sh
## Re-generating the recorded traffic
Re-generating the traffic, captured via wiremock, is necessary if a new API is
accessed in the sync that hasn't been captured yet, or any URL access has been
slightly changed:
$ ./test/smoke/record_gocd.sh
The recorded file needs to be checked in to provide regression testing for the
relevant sync job.