Skip to content

Commit 227888c

Browse files
author
Guillaume Petiot
authored
Merge pull request #262 from gpetiot/dry-run-further
Allow the dry-run mode to continue even after some API call's response were expected by using placeholder values
2 parents 05b35ed + 60ed934 commit 227888c

File tree

3 files changed

+52
-5
lines changed

3 files changed

+52
-5
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
a custom distrib archive file. (#255, @NathanReb)
1919
- Use int64 for timestamps. (#261, @gpetiot)
2020
- Define the order of packages (#263, @gpetiot)
21+
- Allow the dry-run mode to continue even after some API call's response were expected by using placeholder values (#262, @gpetiot)
2122

2223
### Security
2324

lib/github.ml

+10-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ module D = struct
1818
let token = "${token}"
1919

2020
let pr_url = "${pr_url}"
21+
22+
let download_url = "${download_url}"
23+
24+
let release_id = 1
2125
end
2226

2327
module Parse = struct
@@ -181,13 +185,17 @@ let run_with_auth ?(default_body = `Null) ~dry_run ~auth curl_t =
181185
let curl_create_release ~token ~dry_run version msg user repo =
182186
github_auth ~dry_run ~user token >>= fun auth ->
183187
let curl_t = Curl.create_release ~version ~msg ~user ~repo in
184-
run_with_auth ~dry_run ~auth curl_t
188+
let default_body = `Assoc [ ("id", `Int D.release_id) ] in
189+
run_with_auth ~dry_run ~default_body ~auth curl_t
185190
>>= Github_v3_api.Release_response.release_id
186191

187192
let curl_upload_archive ~token ~dry_run archive user repo release_id =
188193
let curl_t = Curl.upload_archive ~archive ~user ~repo ~release_id in
189194
github_auth ~dry_run ~user token >>= fun auth ->
190-
run_with_auth ~dry_run ~auth curl_t
195+
let default_body =
196+
`Assoc [ ("browser_download_url", `String D.download_url) ]
197+
in
198+
run_with_auth ~dry_run ~default_body ~auth curl_t
191199
>>= Github_v3_api.Upload_response.browser_download_url
192200

193201
let open_pr ~token ~dry_run ~title ~distrib_user ~user ~branch ~opam_repo body =

tests/bin/no_doc/run.t

+41-3
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ We publish the documentation, calling publish doc explicitely should fail
121121

122122
We do the whole process, calling publish doc implicitely should succeed
123123

124-
$ yes | dune-release --dry-run
124+
$ yes "" | dune-release --dry-run
125125
[-] Building source archive
126126
=> rmdir _build/whatever-0.1.0.build
127127
-: exec: git --git-dir .git rev-parse --verify 0.1.0
@@ -204,5 +204,43 @@ We do the whole process, calling publish doc implicitely should succeed
204204
-: exec: curl --user foo:${token} --location --silent --show-error --config -
205205
--dump-header - --data
206206
{ "tag_name" : "0.1.0", "body" : "CHANGES:\n\n- Some other feature\n" }
207-
dune-release: [ERROR] Could not retrieve release ID from response
208-
[3]
207+
[+] Succesfully created release with id 1
208+
[?] Upload _build/whatever-0.1.0.tbz as release asset? [Y/n]
209+
[-] Uploading _build/whatever-0.1.0.tbz as a release asset for 0.1.0 via github's API
210+
-: exec: curl --user foo:${token} --location --silent --show-error --config -
211+
--dump-header - --header Content-Type:application/x-tar --data-binary
212+
@_build/whatever-0.1.0.tbz
213+
-: write _build/whatever-0.1.0.url
214+
=> must exists _build/whatever-0.1.0.tbz
215+
[-] Creating opam package description for whatever
216+
dune-release: [WARNING] Could not find _build/whatever-0.1.0.url.
217+
dune-release: [WARNING] using https://github.com/foo/whatever/releases/download/0.1.0/whatever-0.1.0.tbz for as url.src. Note that it might differ from the one generated by Github
218+
[+] Wrote opam package description _build/whatever.0.1.0/opam
219+
[-] Creating opam package description for whatever-lib
220+
dune-release: [WARNING] Could not find _build/whatever-lib-0.1.0.url.
221+
dune-release: [WARNING] using https://github.com/foo/whatever/releases/download/0.1.0/whatever-0.1.0.tbz for as url.src. Note that it might differ from the one generated by Github
222+
[+] Wrote opam package description _build/whatever-lib.0.1.0/opam
223+
...
224+
[-] Submitting
225+
...
226+
=> exists _build/whatever.0.1.0
227+
=> exists _build/whatever-lib.0.1.0
228+
[-] Preparing pull request to ocaml/opam-repository
229+
...
230+
[-] Fetching https://github.com/ocaml/opam-repository.git#master
231+
=> exec:
232+
git --git-dir .git fetch https://github.com/ocaml/opam-repository.git master
233+
=> exec: git --git-dir .git rev-parse FETCH_HEAD
234+
[-] Checking out a local release-whatever-0.1.0 branch
235+
=> exec: git --git-dir .git add packages/whatever/whatever.0.1.0
236+
=> exec: git --git-dir .git add packages/whatever-lib/whatever-lib.0.1.0
237+
-: exec:
238+
...
239+
-: exec:
240+
...
241+
[?] Open PR to ocaml/opam-repository? [Y/n]
242+
...
243+
-: exec: curl --user foo:${token} --silent --show-error --config - --dump-header
244+
- --data
245+
...
246+
-: exec: xdg-open ${pr_url}

0 commit comments

Comments
 (0)