Small adjustments to the API exposed to get jobs

This commit is contained in:
Guillaume Smet
2021-04-05 17:43:55 +02:00
parent b509076d6f
commit 258acf79f6
30 changed files with 921 additions and 996 deletions

View File

@@ -314,12 +314,21 @@ public class GHWorkflowRun extends GHObject {
}
/**
* Retrieves the jobs of this workflow run.
* Returns this list of jobs of this workflow run for the last execution.
*
* @return the jobs query builder
* @return list of jobs from the last execution
*/
public GHWorkflowRunJobQueryBuilder queryJobs() {
return new GHWorkflowRunJobQueryBuilder(this);
public PagedIterable<GHWorkflowRunJob> listJobs() {
return new GHWorkflowRunJobQueryBuilder(this).latest().list();
}
/**
* Returns this list of jobs from all the executions of this workflow run.
*
* @return list of jobs from all the executions
*/
public PagedIterable<GHWorkflowRunJob> listAllJobs() {
return new GHWorkflowRunJobQueryBuilder(this).all().list();
}
private String getApiRoute() {

View File

@@ -22,6 +22,7 @@ import java.util.zip.ZipInputStream;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.greaterThan;
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
import static org.hamcrest.Matchers.hasItems;
import static org.hamcrest.Matchers.is;
@@ -338,9 +339,7 @@ public class GHWorkflowRunTest extends AbstractGitHubWireMockTest {
latestPreexistingWorkflowRunId).orElseThrow(
() -> new IllegalStateException("We must have a valid workflow run starting from here"));
List<GHWorkflowRunJob> jobs = workflowRun.queryJobs()
.latest()
.list()
List<GHWorkflowRunJob> jobs = workflowRun.listJobs()
.toList()
.stream()
.sorted((j1, j2) -> j1.getName().compareTo(j2.getName()))
@@ -361,6 +360,10 @@ public class GHWorkflowRunTest extends AbstractGitHubWireMockTest {
// while we have a job around, test GHRepository#getWorkflowRunJob(id)
GHWorkflowRunJob job1ById = repo.getWorkflowRunJob(job1.getId());
checkJobProperties(workflowRun.getId(), job1ById, "job1");
// Also test listAllJobs() works correctly
List<GHWorkflowRunJob> allJobs = workflowRun.listAllJobs().withPageSize(10).iterator().nextPage();
assertThat(allJobs.size(), greaterThanOrEqualTo(2));
}
private void await(Function<GHRepository, Boolean> condition) throws IOException {

View File

@@ -1,15 +1,15 @@
{
"id": 2269946728,
"run_id": 719290617,
"run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719290617",
"node_id": "MDg6Q2hlY2tSdW4yMjY5OTQ2NzI4",
"id": 2270858630,
"run_id": 719643947,
"run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719643947",
"node_id": "MDg6Q2hlY2tSdW4yMjcwODU4NjMw",
"head_sha": "c7bd3b8db871bbde8629275631ea645622ae89d7",
"url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs/2269946728",
"html_url": "https://github.com/hub4j-test-org/GHWorkflowRunTest/runs/2269946728",
"url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs/2270858630",
"html_url": "https://github.com/hub4j-test-org/GHWorkflowRunTest/runs/2270858630",
"status": "completed",
"conclusion": "success",
"started_at": "2021-04-05T13:14:37Z",
"completed_at": "2021-04-05T13:14:38Z",
"started_at": "2021-04-05T15:42:57Z",
"completed_at": "2021-04-05T15:42:59Z",
"name": "job1",
"steps": [
{
@@ -17,25 +17,25 @@
"status": "completed",
"conclusion": "success",
"number": 1,
"started_at": "2021-04-05T15:14:37.000+02:00",
"completed_at": "2021-04-05T15:14:37.000+02:00"
"started_at": "2021-04-05T17:42:57.000+02:00",
"completed_at": "2021-04-05T17:42:58.000+02:00"
},
{
"name": "Run a one-line script",
"status": "completed",
"conclusion": "success",
"number": 2,
"started_at": "2021-04-05T15:14:37.000+02:00",
"completed_at": "2021-04-05T15:14:38.000+02:00"
"started_at": "2021-04-05T17:42:58.000+02:00",
"completed_at": "2021-04-05T17:42:59.000+02:00"
},
{
"name": "Complete job",
"status": "completed",
"conclusion": "success",
"number": 3,
"started_at": "2021-04-05T15:14:38.000+02:00",
"completed_at": "2021-04-05T15:14:38.000+02:00"
"started_at": "2021-04-05T17:42:59.000+02:00",
"completed_at": "2021-04-05T17:42:59.000+02:00"
}
],
"check_run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/check-runs/2269946728"
"check_run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/check-runs/2270858630"
}

View File

@@ -1,30 +1,30 @@
{
"total_count": 111,
"total_count": 114,
"workflow_runs": [
{
"id": 719256201,
"id": 719641767,
"name": "Multi jobs workflow",
"node_id": "MDExOldvcmtmbG93UnVuNzE5MjU2MjAx",
"node_id": "MDExOldvcmtmbG93UnVuNzE5NjQxNzY3",
"head_branch": "main",
"head_sha": "c7bd3b8db871bbde8629275631ea645622ae89d7",
"run_number": 11,
"run_number": 14,
"event": "workflow_dispatch",
"status": "completed",
"conclusion": "success",
"workflow_id": 7518893,
"check_suite_id": 2421886985,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGUyNDIxODg2OTg1",
"url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719256201",
"html_url": "https://github.com/hub4j-test-org/GHWorkflowRunTest/actions/runs/719256201",
"check_suite_id": 2422908957,
"check_suite_node_id": "MDEwOkNoZWNrU3VpdGUyNDIyOTA4OTU3",
"url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719641767",
"html_url": "https://github.com/hub4j-test-org/GHWorkflowRunTest/actions/runs/719641767",
"pull_requests": [],
"created_at": "2021-04-05T13:00:01Z",
"updated_at": "2021-04-05T13:00:17Z",
"jobs_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719256201/jobs",
"logs_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719256201/logs",
"check_suite_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/check-suites/2421886985",
"artifacts_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719256201/artifacts",
"cancel_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719256201/cancel",
"rerun_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719256201/rerun",
"created_at": "2021-04-05T15:41:54Z",
"updated_at": "2021-04-05T15:42:11Z",
"jobs_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719641767/jobs",
"logs_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719641767/logs",
"check_suite_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/check-suites/2422908957",
"artifacts_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719641767/artifacts",
"cancel_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719641767/cancel",
"rerun_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719641767/rerun",
"workflow_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/workflows/7518893",
"head_commit": {
"id": "c7bd3b8db871bbde8629275631ea645622ae89d7",

View File

@@ -2,17 +2,17 @@
"total_count": 2,
"jobs": [
{
"id": 2269946665,
"run_id": 719290617,
"run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719290617",
"node_id": "MDg6Q2hlY2tSdW4yMjY5OTQ2NjY1",
"id": 2270858576,
"run_id": 719643947,
"run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719643947",
"node_id": "MDg6Q2hlY2tSdW4yMjcwODU4NTc2",
"head_sha": "c7bd3b8db871bbde8629275631ea645622ae89d7",
"url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs/2269946665",
"html_url": "https://github.com/hub4j-test-org/GHWorkflowRunTest/runs/2269946665",
"url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs/2270858576",
"html_url": "https://github.com/hub4j-test-org/GHWorkflowRunTest/runs/2270858576",
"status": "completed",
"conclusion": "success",
"started_at": "2021-04-05T13:14:38Z",
"completed_at": "2021-04-05T13:14:39Z",
"started_at": "2021-04-05T15:42:56Z",
"completed_at": "2021-04-05T15:42:57Z",
"name": "job2",
"steps": [
{
@@ -20,40 +20,40 @@
"status": "completed",
"conclusion": "success",
"number": 1,
"started_at": "2021-04-05T15:14:38.000+02:00",
"completed_at": "2021-04-05T15:14:38.000+02:00"
"started_at": "2021-04-05T17:42:56.000+02:00",
"completed_at": "2021-04-05T17:42:56.000+02:00"
},
{
"name": "Run a one-line script",
"status": "completed",
"conclusion": "success",
"number": 2,
"started_at": "2021-04-05T15:14:38.000+02:00",
"completed_at": "2021-04-05T15:14:39.000+02:00"
"started_at": "2021-04-05T17:42:56.000+02:00",
"completed_at": "2021-04-05T17:42:57.000+02:00"
},
{
"name": "Complete job",
"status": "completed",
"conclusion": "success",
"number": 3,
"started_at": "2021-04-05T15:14:39.000+02:00",
"completed_at": "2021-04-05T15:14:39.000+02:00"
"started_at": "2021-04-05T17:42:57.000+02:00",
"completed_at": "2021-04-05T17:42:57.000+02:00"
}
],
"check_run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/check-runs/2269946665"
"check_run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/check-runs/2270858576"
},
{
"id": 2269946728,
"run_id": 719290617,
"run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719290617",
"node_id": "MDg6Q2hlY2tSdW4yMjY5OTQ2NzI4",
"id": 2270858630,
"run_id": 719643947,
"run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719643947",
"node_id": "MDg6Q2hlY2tSdW4yMjcwODU4NjMw",
"head_sha": "c7bd3b8db871bbde8629275631ea645622ae89d7",
"url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs/2269946728",
"html_url": "https://github.com/hub4j-test-org/GHWorkflowRunTest/runs/2269946728",
"url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs/2270858630",
"html_url": "https://github.com/hub4j-test-org/GHWorkflowRunTest/runs/2270858630",
"status": "completed",
"conclusion": "success",
"started_at": "2021-04-05T13:14:37Z",
"completed_at": "2021-04-05T13:14:38Z",
"started_at": "2021-04-05T15:42:57Z",
"completed_at": "2021-04-05T15:42:59Z",
"name": "job1",
"steps": [
{
@@ -61,27 +61,27 @@
"status": "completed",
"conclusion": "success",
"number": 1,
"started_at": "2021-04-05T15:14:37.000+02:00",
"completed_at": "2021-04-05T15:14:37.000+02:00"
"started_at": "2021-04-05T17:42:57.000+02:00",
"completed_at": "2021-04-05T17:42:58.000+02:00"
},
{
"name": "Run a one-line script",
"status": "completed",
"conclusion": "success",
"number": 2,
"started_at": "2021-04-05T15:14:37.000+02:00",
"completed_at": "2021-04-05T15:14:38.000+02:00"
"started_at": "2021-04-05T17:42:58.000+02:00",
"completed_at": "2021-04-05T17:42:59.000+02:00"
},
{
"name": "Complete job",
"status": "completed",
"conclusion": "success",
"number": 3,
"started_at": "2021-04-05T15:14:38.000+02:00",
"completed_at": "2021-04-05T15:14:38.000+02:00"
"started_at": "2021-04-05T17:42:59.000+02:00",
"completed_at": "2021-04-05T17:42:59.000+02:00"
}
],
"check_run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/check-runs/2269946728"
"check_run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/check-runs/2270858630"
}
]
}

View File

@@ -0,0 +1,87 @@
{
"total_count": 2,
"jobs": [
{
"id": 2270858576,
"run_id": 719643947,
"run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719643947",
"node_id": "MDg6Q2hlY2tSdW4yMjcwODU4NTc2",
"head_sha": "c7bd3b8db871bbde8629275631ea645622ae89d7",
"url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs/2270858576",
"html_url": "https://github.com/hub4j-test-org/GHWorkflowRunTest/runs/2270858576",
"status": "completed",
"conclusion": "success",
"started_at": "2021-04-05T15:42:56Z",
"completed_at": "2021-04-05T15:42:57Z",
"name": "job2",
"steps": [
{
"name": "Set up job",
"status": "completed",
"conclusion": "success",
"number": 1,
"started_at": "2021-04-05T17:42:56.000+02:00",
"completed_at": "2021-04-05T17:42:56.000+02:00"
},
{
"name": "Run a one-line script",
"status": "completed",
"conclusion": "success",
"number": 2,
"started_at": "2021-04-05T17:42:56.000+02:00",
"completed_at": "2021-04-05T17:42:57.000+02:00"
},
{
"name": "Complete job",
"status": "completed",
"conclusion": "success",
"number": 3,
"started_at": "2021-04-05T17:42:57.000+02:00",
"completed_at": "2021-04-05T17:42:57.000+02:00"
}
],
"check_run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/check-runs/2270858576"
},
{
"id": 2270858630,
"run_id": 719643947,
"run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719643947",
"node_id": "MDg6Q2hlY2tSdW4yMjcwODU4NjMw",
"head_sha": "c7bd3b8db871bbde8629275631ea645622ae89d7",
"url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs/2270858630",
"html_url": "https://github.com/hub4j-test-org/GHWorkflowRunTest/runs/2270858630",
"status": "completed",
"conclusion": "success",
"started_at": "2021-04-05T15:42:57Z",
"completed_at": "2021-04-05T15:42:59Z",
"name": "job1",
"steps": [
{
"name": "Set up job",
"status": "completed",
"conclusion": "success",
"number": 1,
"started_at": "2021-04-05T17:42:57.000+02:00",
"completed_at": "2021-04-05T17:42:58.000+02:00"
},
{
"name": "Run a one-line script",
"status": "completed",
"conclusion": "success",
"number": 2,
"started_at": "2021-04-05T17:42:58.000+02:00",
"completed_at": "2021-04-05T17:42:59.000+02:00"
},
{
"name": "Complete job",
"status": "completed",
"conclusion": "success",
"number": 3,
"started_at": "2021-04-05T17:42:59.000+02:00",
"completed_at": "2021-04-05T17:42:59.000+02:00"
}
],
"check_run_url": "https://api.github.com/repos/hub4j-test-org/GHWorkflowRunTest/check-runs/2270858630"
}
]
}

View File

@@ -1,5 +1,5 @@
{
"id": "8e55fa00-c6af-428a-aa20-69fb3223a0d1",
"id": "e6378c99-ad05-4241-864f-3c074b6e7647",
"name": "repos_hub4j-test-org_ghworkflowruntest",
"request": {
"url": "/repos/hub4j-test-org/GHWorkflowRunTest",
@@ -15,7 +15,7 @@
"bodyFileName": "repos_hub4j-test-org_ghworkflowruntest-2.json",
"headers": {
"Server": "GitHub.com",
"Date": "Mon, 05 Apr 2021 13:14:28 GMT",
"Date": "Mon, 05 Apr 2021 15:42:46 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
@@ -28,19 +28,19 @@
"X-Accepted-OAuth-Scopes": "repo",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4855",
"X-RateLimit-Reset": "1617629340",
"X-RateLimit-Used": "145",
"X-RateLimit-Remaining": "4963",
"X-RateLimit-Reset": "1617640843",
"X-RateLimit-Used": "37",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"X-XSS-Protection": "0",
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
"Content-Security-Policy": "default-src 'none'",
"X-GitHub-Request-Id": "92F4:8BFB:8531C58:8742CD6:606B0D34"
"X-GitHub-Request-Id": "9F98:10C34:780A3FB:79F1719:606B2FF6"
}
},
"uuid": "8e55fa00-c6af-428a-aa20-69fb3223a0d1",
"uuid": "e6378c99-ad05-4241-864f-3c074b6e7647",
"persistent": true,
"insertionIndex": 2
}

View File

@@ -1,8 +1,8 @@
{
"id": "a153454a-6e33-4e4a-ad0c-30531dcfa355",
"name": "repos_hub4j-test-org_ghworkflowruntest_actions_jobs_2269946665_logs",
"id": "5fae275f-ed17-4d88-8a62-1db21c5d0943",
"name": "repos_hub4j-test-org_ghworkflowruntest_actions_jobs_2270858576_logs",
"request": {
"url": "/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs/2269946665/logs",
"url": "/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs/2270858576/logs",
"method": "GET",
"headers": {
"Accept": {
@@ -14,12 +14,12 @@
"status": 302,
"headers": {
"Server": "GitHub.com",
"Date": "Mon, 05 Apr 2021 13:14:52 GMT",
"Date": "Mon, 05 Apr 2021 15:43:10 GMT",
"Content-Type": "text/html;charset=utf-8",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4843",
"X-RateLimit-Reset": "1617629340",
"X-RateLimit-Used": "157",
"X-RateLimit-Remaining": "4951",
"X-RateLimit-Reset": "1617640843",
"X-RateLimit-Used": "49",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
@@ -27,11 +27,11 @@
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
"Content-Security-Policy": "default-src 'none'",
"Vary": "Accept-Encoding, Accept, X-Requested-With",
"X-GitHub-Request-Id": "92F4:8BFB:8534555:874567B:606B0D4C",
"Location": "https://pipelines.actions.githubusercontent.com/u72ug1Ib1ZBCtek798HyrDYOU28rBK6ssrOKf37ZxrpgUbk95I/_apis/pipelines/1/runs/136/signedlogcontent/5?urlExpires=2021-04-05T13%3A15%3A52.3749500Z&urlSigningMethod=HMACV1&urlSignature=gvBxNhvLLsKDO9z7azGKIWMBwfWZvehkVTlsB8%2Bw8%2FY%3D"
"X-GitHub-Request-Id": "9F98:10C34:780D7F0:79F4BC6:606B300E",
"Location": "https://pipelines.actions.githubusercontent.com/u72ug1Ib1ZBCtek798HyrDYOU28rBK6ssrOKf37ZxrpgUbk95I/_apis/pipelines/1/runs/139/signedlogcontent/4?urlExpires=2021-04-05T15%3A44%3A10.8371854Z&urlSigningMethod=HMACV1&urlSignature=uQbYtzzKCaCe0FzhPYJV0y1bcSdRhvUa6rcfDXGGXnE%3D"
}
},
"uuid": "a153454a-6e33-4e4a-ad0c-30531dcfa355",
"uuid": "5fae275f-ed17-4d88-8a62-1db21c5d0943",
"persistent": true,
"insertionIndex": 9
}

View File

@@ -1,8 +1,8 @@
{
"id": "be5e78c3-4b01-4b33-a9f8-97f34abe0efc",
"name": "repos_hub4j-test-org_ghworkflowruntest_actions_jobs_2269946728_logs",
"id": "58d97e8d-6bd7-4779-8d45-d68812efd6d1",
"name": "repos_hub4j-test-org_ghworkflowruntest_actions_jobs_2270858630_logs",
"request": {
"url": "/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs/2269946728/logs",
"url": "/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs/2270858630/logs",
"method": "GET",
"headers": {
"Accept": {
@@ -14,12 +14,12 @@
"status": 302,
"headers": {
"Server": "GitHub.com",
"Date": "Mon, 05 Apr 2021 13:14:51 GMT",
"Date": "Mon, 05 Apr 2021 15:43:09 GMT",
"Content-Type": "text/html;charset=utf-8",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4844",
"X-RateLimit-Reset": "1617629340",
"X-RateLimit-Used": "156",
"X-RateLimit-Remaining": "4952",
"X-RateLimit-Reset": "1617640843",
"X-RateLimit-Used": "48",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
@@ -27,11 +27,11 @@
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
"Content-Security-Policy": "default-src 'none'",
"Vary": "Accept-Encoding, Accept, X-Requested-With",
"X-GitHub-Request-Id": "92F4:8BFB:8534414:874553A:606B0D4B",
"Location": "https://pipelines.actions.githubusercontent.com/u72ug1Ib1ZBCtek798HyrDYOU28rBK6ssrOKf37ZxrpgUbk95I/_apis/pipelines/1/runs/136/signedlogcontent/4?urlExpires=2021-04-05T13%3A15%3A51.6173063Z&urlSigningMethod=HMACV1&urlSignature=u8xNrhIfomvqSZDbM%2Bn4R9hMYK38vmaIX8GgBJAtNSY%3D"
"X-GitHub-Request-Id": "9F98:10C34:780D5BB:79F498E:606B300D",
"Location": "https://pipelines.actions.githubusercontent.com/u72ug1Ib1ZBCtek798HyrDYOU28rBK6ssrOKf37ZxrpgUbk95I/_apis/pipelines/1/runs/139/signedlogcontent/5?urlExpires=2021-04-05T15%3A44%3A09.8999243Z&urlSigningMethod=HMACV1&urlSignature=CLJeOMWVKrxsNSCeMNmmq%2F7q6aythG5XOtkWAy1Z59s%3D"
}
},
"uuid": "be5e78c3-4b01-4b33-a9f8-97f34abe0efc",
"uuid": "58d97e8d-6bd7-4779-8d45-d68812efd6d1",
"persistent": true,
"insertionIndex": 8
}

View File

@@ -1,8 +1,8 @@
{
"id": "796bdd9d-2b57-4bfc-aecd-4d2008fceecc",
"name": "repos_hub4j-test-org_ghworkflowruntest_actions_jobs__2269946728",
"id": "3e411914-13ab-4047-9b13-8394a37a3f62",
"name": "repos_hub4j-test-org_ghworkflowruntest_actions_jobs__2270858630",
"request": {
"url": "/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs//2269946728",
"url": "/repos/hub4j-test-org/GHWorkflowRunTest/actions/jobs//2270858630",
"method": "GET",
"headers": {
"Accept": {
@@ -12,34 +12,34 @@
},
"response": {
"status": 200,
"bodyFileName": "repos_hub4j-test-org_ghworkflowruntest_actions_jobs__2269946728-10.json",
"bodyFileName": "repos_hub4j-test-org_ghworkflowruntest_actions_jobs__2270858630-10.json",
"headers": {
"Server": "GitHub.com",
"Date": "Mon, 05 Apr 2021 13:14:52 GMT",
"Date": "Mon, 05 Apr 2021 15:43:11 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"e229b026f1d30c2b8d91c4a6bac5038dc2de78f1f5653d085138bbea88254c69\"",
"ETag": "W/\"22360ebab22ff456a8e93771b697d8d68f9d54027c077d2c286634c438adf6a9\"",
"X-OAuth-Scopes": "repo, user, workflow",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4842",
"X-RateLimit-Reset": "1617629340",
"X-RateLimit-Used": "158",
"X-RateLimit-Remaining": "4950",
"X-RateLimit-Reset": "1617640843",
"X-RateLimit-Used": "50",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"X-XSS-Protection": "0",
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
"Content-Security-Policy": "default-src 'none'",
"X-GitHub-Request-Id": "92F4:8BFB:85345E7:8745722:606B0D4C"
"X-GitHub-Request-Id": "9F98:10C34:780D936:79F4D0A:606B300F"
}
},
"uuid": "796bdd9d-2b57-4bfc-aecd-4d2008fceecc",
"uuid": "3e411914-13ab-4047-9b13-8394a37a3f62",
"persistent": true,
"insertionIndex": 10
}

View File

@@ -1,5 +1,5 @@
{
"id": "f635440b-c764-40f0-a97b-15989856dad3",
"id": "4890281f-76d3-44d5-9815-127dd2b14748",
"name": "repos_hub4j-test-org_ghworkflowruntest_actions_runs",
"request": {
"url": "/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs?per_page=1",
@@ -15,32 +15,32 @@
"bodyFileName": "repos_hub4j-test-org_ghworkflowruntest_actions_runs-4.json",
"headers": {
"Server": "GitHub.com",
"Date": "Mon, 05 Apr 2021 13:14:28 GMT",
"Date": "Mon, 05 Apr 2021 15:42:47 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"65164fafdfcf9fd47635528bf32441d4d67e4a773ae644a7cdd61adf2bd2fa73\"",
"ETag": "W/\"ff99d3f1525ab2eab0d06e8d5e9ec8423d29a29e5de1c7269f3c9f8ca0e0fd65\"",
"X-OAuth-Scopes": "repo, user, workflow",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4853",
"X-RateLimit-Reset": "1617629340",
"X-RateLimit-Used": "147",
"X-RateLimit-Remaining": "4961",
"X-RateLimit-Reset": "1617640843",
"X-RateLimit-Used": "39",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"X-XSS-Protection": "0",
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
"Content-Security-Policy": "default-src 'none'",
"X-GitHub-Request-Id": "92F4:8BFB:8531D0A:8742D8F:606B0D34",
"Link": "<https://api.github.com/repositories/348674220/actions/runs?per_page=1&page=2>; rel=\"next\", <https://api.github.com/repositories/348674220/actions/runs?per_page=1&page=111>; rel=\"last\""
"X-GitHub-Request-Id": "9F98:10C34:780A4C3:79F17D9:606B2FF6",
"Link": "<https://api.github.com/repositories/348674220/actions/runs?per_page=1&page=2>; rel=\"next\", <https://api.github.com/repositories/348674220/actions/runs?per_page=1&page=114>; rel=\"last\""
}
},
"uuid": "f635440b-c764-40f0-a97b-15989856dad3",
"uuid": "4890281f-76d3-44d5-9815-127dd2b14748",
"persistent": true,
"insertionIndex": 4
}

View File

@@ -1,5 +1,5 @@
{
"id": "21e9df11-c4be-4468-94a1-b504dd5d68e3",
"id": "388ca7dd-f294-434c-a860-2e043776a62d",
"name": "repos_hub4j-test-org_ghworkflowruntest_actions_runs",
"request": {
"url": "/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs?branch=main&status=completed&event=workflow_dispatch&per_page=20",
@@ -15,32 +15,32 @@
"bodyFileName": "repos_hub4j-test-org_ghworkflowruntest_actions_runs-6.json",
"headers": {
"Server": "GitHub.com",
"Date": "Mon, 05 Apr 2021 13:14:51 GMT",
"Date": "Mon, 05 Apr 2021 15:43:09 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"cf3109686571a7a2431f88d2f97dec6abf1c3156bae9b8ab85948613902efeb5\"",
"ETag": "W/\"cc9592c68c74a53ac712a4a09811454b5bf14e41d104c17767ae8badee699403\"",
"X-OAuth-Scopes": "repo, user, workflow",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4846",
"X-RateLimit-Reset": "1617629340",
"X-RateLimit-Used": "154",
"X-RateLimit-Remaining": "4954",
"X-RateLimit-Reset": "1617640843",
"X-RateLimit-Used": "46",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"X-XSS-Protection": "0",
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
"Content-Security-Policy": "default-src 'none'",
"X-GitHub-Request-Id": "92F4:8BFB:853431C:8745440:606B0D4A",
"X-GitHub-Request-Id": "9F98:10C34:780D418:79F47E2:606B300D",
"Link": "<https://api.github.com/repositories/348674220/actions/runs?branch=main&status=completed&event=workflow_dispatch&per_page=20&page=2>; rel=\"next\", <https://api.github.com/repositories/348674220/actions/runs?branch=main&status=completed&event=workflow_dispatch&per_page=20&page=5>; rel=\"last\""
}
},
"uuid": "21e9df11-c4be-4468-94a1-b504dd5d68e3",
"uuid": "388ca7dd-f294-434c-a860-2e043776a62d",
"persistent": true,
"insertionIndex": 6
}

View File

@@ -0,0 +1,45 @@
{
"id": "8575d71f-9ab0-4307-84db-4f331c4eeed1",
"name": "repos_hub4j-test-org_ghworkflowruntest_actions_runs_719643947_jobs",
"request": {
"url": "/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719643947/jobs?filter=all&per_page=10",
"method": "GET",
"headers": {
"Accept": {
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
}
}
},
"response": {
"status": 200,
"bodyFileName": "repos_hub4j-test-org_ghworkflowruntest_actions_runs_719643947_jobs-11.json",
"headers": {
"Server": "GitHub.com",
"Date": "Mon, 05 Apr 2021 15:43:11 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"3ffb0b2763802a3d0d2e431e233998314d7dae8e0bb4d1c28fd0180a4863ae87\"",
"X-OAuth-Scopes": "repo, user, workflow",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4949",
"X-RateLimit-Reset": "1617640843",
"X-RateLimit-Used": "51",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"X-XSS-Protection": "0",
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
"Content-Security-Policy": "default-src 'none'",
"X-GitHub-Request-Id": "9F98:10C34:780D987:79F4D56:606B300F"
}
},
"uuid": "8575d71f-9ab0-4307-84db-4f331c4eeed1",
"persistent": true,
"insertionIndex": 11
}

View File

@@ -1,8 +1,8 @@
{
"id": "c94a1c19-b5ce-4d3c-b702-52ffe8488d3e",
"name": "repos_hub4j-test-org_ghworkflowruntest_actions_runs_719290617_jobs",
"id": "2ecde27b-9999-4225-ae57-dfb4dc14dc45",
"name": "repos_hub4j-test-org_ghworkflowruntest_actions_runs_719643947_jobs",
"request": {
"url": "/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719290617/jobs?filter=latest",
"url": "/repos/hub4j-test-org/GHWorkflowRunTest/actions/runs/719643947/jobs?filter=latest",
"method": "GET",
"headers": {
"Accept": {
@@ -12,34 +12,34 @@
},
"response": {
"status": 200,
"bodyFileName": "repos_hub4j-test-org_ghworkflowruntest_actions_runs_719290617_jobs-7.json",
"bodyFileName": "repos_hub4j-test-org_ghworkflowruntest_actions_runs_719643947_jobs-7.json",
"headers": {
"Server": "GitHub.com",
"Date": "Mon, 05 Apr 2021 13:14:51 GMT",
"Date": "Mon, 05 Apr 2021 15:43:09 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"36b85f5f7c2e6c9dd2da261b7180e41b9c55b942551f7ee872ddfaed6d108da2\"",
"ETag": "W/\"3ffb0b2763802a3d0d2e431e233998314d7dae8e0bb4d1c28fd0180a4863ae87\"",
"X-OAuth-Scopes": "repo, user, workflow",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4845",
"X-RateLimit-Reset": "1617629340",
"X-RateLimit-Used": "155",
"X-RateLimit-Remaining": "4953",
"X-RateLimit-Reset": "1617640843",
"X-RateLimit-Used": "47",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"X-XSS-Protection": "0",
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
"Content-Security-Policy": "default-src 'none'",
"X-GitHub-Request-Id": "92F4:8BFB:85343C0:87454EB:606B0D4B"
"X-GitHub-Request-Id": "9F98:10C34:780D555:79F4921:606B300D"
}
},
"uuid": "c94a1c19-b5ce-4d3c-b702-52ffe8488d3e",
"uuid": "2ecde27b-9999-4225-ae57-dfb4dc14dc45",
"persistent": true,
"insertionIndex": 7
}

View File

@@ -1,5 +1,5 @@
{
"id": "79b90799-5ece-4185-9820-e86c324a3b22",
"id": "99ac1046-2ff7-4984-844f-ea2498783487",
"name": "repos_hub4j-test-org_ghworkflowruntest_actions_workflows_7518893_dispatches",
"request": {
"url": "/repos/hub4j-test-org/GHWorkflowRunTest/actions/workflows/7518893/dispatches",
@@ -21,14 +21,14 @@
"status": 204,
"headers": {
"Server": "GitHub.com",
"Date": "Mon, 05 Apr 2021 13:14:29 GMT",
"Date": "Mon, 05 Apr 2021 15:42:47 GMT",
"X-OAuth-Scopes": "repo, user, workflow",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4852",
"X-RateLimit-Reset": "1617629340",
"X-RateLimit-Used": "148",
"X-RateLimit-Remaining": "4960",
"X-RateLimit-Reset": "1617640843",
"X-RateLimit-Used": "40",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
@@ -36,10 +36,10 @@
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
"Content-Security-Policy": "default-src 'none'",
"Vary": "Accept-Encoding, Accept, X-Requested-With",
"X-GitHub-Request-Id": "92F4:8BFB:8531D80:8742E0B:606B0D34"
"X-GitHub-Request-Id": "9F98:10C34:780A52F:79F1844:606B2FF7"
}
},
"uuid": "79b90799-5ece-4185-9820-e86c324a3b22",
"uuid": "99ac1046-2ff7-4984-844f-ea2498783487",
"persistent": true,
"insertionIndex": 5
}

View File

@@ -1,5 +1,5 @@
{
"id": "9bb9ba12-c59c-4a54-8d03-1e207de0fa63",
"id": "e96398b1-9a9c-45fb-ab74-c357009b8f3c",
"name": "repos_hub4j-test-org_ghworkflowruntest_actions_workflows_multi-jobs-workflowyml",
"request": {
"url": "/repos/hub4j-test-org/GHWorkflowRunTest/actions/workflows/multi-jobs-workflow.yml",
@@ -15,7 +15,7 @@
"bodyFileName": "repos_hub4j-test-org_ghworkflowruntest_actions_workflows_multi-jobs-workflowyml-3.json",
"headers": {
"Server": "GitHub.com",
"Date": "Mon, 05 Apr 2021 13:14:28 GMT",
"Date": "Mon, 05 Apr 2021 15:42:46 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
@@ -27,19 +27,19 @@
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4854",
"X-RateLimit-Reset": "1617629340",
"X-RateLimit-Used": "146",
"X-RateLimit-Remaining": "4962",
"X-RateLimit-Reset": "1617640843",
"X-RateLimit-Used": "38",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"X-XSS-Protection": "0",
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
"Content-Security-Policy": "default-src 'none'",
"X-GitHub-Request-Id": "92F4:8BFB:8531CC0:8742D32:606B0D34"
"X-GitHub-Request-Id": "9F98:10C34:780A46C:79F1783:606B2FF6"
}
},
"uuid": "9bb9ba12-c59c-4a54-8d03-1e207de0fa63",
"uuid": "e96398b1-9a9c-45fb-ab74-c357009b8f3c",
"persistent": true,
"insertionIndex": 3
}

View File

@@ -1,5 +1,5 @@
{
"id": "9cd0255f-efdf-4501-84e8-a36399590ed8",
"id": "559b971c-451c-4c7d-bd31-5bc58ac46d5a",
"name": "user",
"request": {
"url": "/user",
@@ -15,7 +15,7 @@
"bodyFileName": "user-1.json",
"headers": {
"Server": "GitHub.com",
"Date": "Mon, 05 Apr 2021 13:14:28 GMT",
"Date": "Mon, 05 Apr 2021 15:42:46 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
@@ -28,19 +28,19 @@
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4857",
"X-RateLimit-Reset": "1617629340",
"X-RateLimit-Used": "143",
"X-RateLimit-Remaining": "4965",
"X-RateLimit-Reset": "1617640843",
"X-RateLimit-Used": "35",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"X-XSS-Protection": "0",
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
"Content-Security-Policy": "default-src 'none'",
"X-GitHub-Request-Id": "92F4:8BFB:8531B69:8742BE7:606B0D33"
"X-GitHub-Request-Id": "9F98:10C34:780A2B8:79F15C3:606B2FF5"
}
},
"uuid": "9cd0255f-efdf-4501-84e8-a36399590ed8",
"uuid": "559b971c-451c-4c7d-bd31-5bc58ac46d5a",
"persistent": true,
"insertionIndex": 1
}

View File

@@ -1,39 +0,0 @@
2021-04-05T12:42:04.2761554Z ##[section]Starting: Request a runner to run this job
2021-04-05T12:42:04.4055924Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2021-04-05T12:42:04.4056017Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T12:42:04.4056190Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T12:42:04.5280515Z ##[section]Finishing: Request a runner to run this job
2021-04-05T12:42:09.1979765Z Current runner version: '2.277.1'
2021-04-05T12:42:09.2008860Z ##[group]Operating System
2021-04-05T12:42:09.2009935Z Ubuntu
2021-04-05T12:42:09.2010390Z 20.04.2
2021-04-05T12:42:09.2010846Z LTS
2021-04-05T12:42:09.2011293Z ##[endgroup]
2021-04-05T12:42:09.2011822Z ##[group]Virtual Environment
2021-04-05T12:42:09.2012544Z Environment: ubuntu-20.04
2021-04-05T12:42:09.2013091Z Version: 20210330.1
2021-04-05T12:42:09.2014140Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20210330.1/images/linux/Ubuntu2004-README.md
2021-04-05T12:42:09.2015515Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20210330.1
2021-04-05T12:42:09.2016388Z ##[endgroup]
2021-04-05T12:42:09.2018748Z ##[group]GITHUB_TOKEN Permissions
2021-04-05T12:42:09.2020041Z Actions: write
2021-04-05T12:42:09.2020618Z Checks: write
2021-04-05T12:42:09.2021096Z Contents: write
2021-04-05T12:42:09.2021609Z Deployments: write
2021-04-05T12:42:09.2022303Z Issues: write
2021-04-05T12:42:09.2022891Z Metadata: read
2021-04-05T12:42:09.2023539Z OrganizationPackages: write
2021-04-05T12:42:09.2024139Z Packages: write
2021-04-05T12:42:09.2024664Z PullRequests: write
2021-04-05T12:42:09.2025391Z RepositoryProjects: write
2021-04-05T12:42:09.2026022Z SecurityEvents: write
2021-04-05T12:42:09.2026555Z Statuses: write
2021-04-05T12:42:09.2027242Z ##[endgroup]
2021-04-05T12:42:09.2030666Z Prepare workflow directory
2021-04-05T12:42:09.2758319Z Prepare all required actions
2021-04-05T12:42:09.3757884Z ##[group]Run echo Hello from job1!
2021-04-05T12:42:09.3758536Z echo Hello from job1!
2021-04-05T12:42:09.4401406Z shell: /usr/bin/bash -e {0}
2021-04-05T12:42:09.4402076Z ##[endgroup]
2021-04-05T12:42:10.3070171Z Hello from job1!
2021-04-05T12:42:10.3112008Z Cleaning up orphan processes

View File

@@ -1,39 +0,0 @@
2021-04-05T13:00:02.8376003Z ##[section]Starting: Request a runner to run this job
2021-04-05T13:00:03.2192604Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2021-04-05T13:00:03.2192732Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T13:00:03.2192950Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T13:00:03.3082246Z ##[section]Finishing: Request a runner to run this job
2021-04-05T13:00:10.8303065Z Current runner version: '2.277.1'
2021-04-05T13:00:10.8326261Z ##[group]Operating System
2021-04-05T13:00:10.8327053Z Ubuntu
2021-04-05T13:00:10.8327427Z 20.04.2
2021-04-05T13:00:10.8327794Z LTS
2021-04-05T13:00:10.8328147Z ##[endgroup]
2021-04-05T13:00:10.8328571Z ##[group]Virtual Environment
2021-04-05T13:00:10.8329099Z Environment: ubuntu-20.04
2021-04-05T13:00:10.8329533Z Version: 20210330.1
2021-04-05T13:00:10.8330339Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20210330.1/images/linux/Ubuntu2004-README.md
2021-04-05T13:00:10.8331462Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20210330.1
2021-04-05T13:00:10.8332147Z ##[endgroup]
2021-04-05T13:00:10.8333787Z ##[group]GITHUB_TOKEN Permissions
2021-04-05T13:00:10.8334808Z Actions: write
2021-04-05T13:00:10.8335283Z Checks: write
2021-04-05T13:00:10.8335668Z Contents: write
2021-04-05T13:00:10.8336078Z Deployments: write
2021-04-05T13:00:10.8336593Z Issues: write
2021-04-05T13:00:10.8337041Z Metadata: read
2021-04-05T13:00:10.8337522Z OrganizationPackages: write
2021-04-05T13:00:10.8338042Z Packages: write
2021-04-05T13:00:10.8338461Z PullRequests: write
2021-04-05T13:00:10.8338945Z RepositoryProjects: write
2021-04-05T13:00:10.8339491Z SecurityEvents: write
2021-04-05T13:00:10.8339918Z Statuses: write
2021-04-05T13:00:10.8340387Z ##[endgroup]
2021-04-05T13:00:10.8343202Z Prepare workflow directory
2021-04-05T13:00:10.8949391Z Prepare all required actions
2021-04-05T13:00:10.9597827Z ##[group]Run echo Hello from job1!
2021-04-05T13:00:10.9598467Z echo Hello from job1!
2021-04-05T13:00:11.9244450Z shell: /usr/bin/bash -e {0}
2021-04-05T13:00:11.9245221Z ##[endgroup]
2021-04-05T13:00:11.9498945Z Hello from job1!
2021-04-05T13:00:11.9531346Z Cleaning up orphan processes

View File

@@ -1,39 +0,0 @@
2021-04-05T13:00:02.8380323Z ##[section]Starting: Request a runner to run this job
2021-04-05T13:00:03.2087658Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2021-04-05T13:00:03.2087770Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T13:00:03.2088211Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T13:00:03.3087095Z ##[section]Finishing: Request a runner to run this job
2021-04-05T13:00:10.4717302Z Current runner version: '2.277.1'
2021-04-05T13:00:10.4748032Z ##[group]Operating System
2021-04-05T13:00:10.4748979Z Ubuntu
2021-04-05T13:00:10.4749449Z 20.04.2
2021-04-05T13:00:10.4749834Z LTS
2021-04-05T13:00:10.4750248Z ##[endgroup]
2021-04-05T13:00:10.4750751Z ##[group]Virtual Environment
2021-04-05T13:00:10.4751315Z Environment: ubuntu-20.04
2021-04-05T13:00:10.4751781Z Version: 20210330.1
2021-04-05T13:00:10.4752703Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20210330.1/images/linux/Ubuntu2004-README.md
2021-04-05T13:00:10.4753923Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20210330.1
2021-04-05T13:00:10.4754709Z ##[endgroup]
2021-04-05T13:00:10.4756772Z ##[group]GITHUB_TOKEN Permissions
2021-04-05T13:00:10.4758217Z Actions: write
2021-04-05T13:00:10.4758676Z Checks: write
2021-04-05T13:00:10.4759156Z Contents: write
2021-04-05T13:00:10.4759693Z Deployments: write
2021-04-05T13:00:10.4760712Z Issues: write
2021-04-05T13:00:10.4761281Z Metadata: read
2021-04-05T13:00:10.4761850Z OrganizationPackages: write
2021-04-05T13:00:10.4762349Z Packages: write
2021-04-05T13:00:10.4762786Z PullRequests: write
2021-04-05T13:00:10.4763339Z RepositoryProjects: write
2021-04-05T13:00:10.4763869Z SecurityEvents: write
2021-04-05T13:00:10.4764313Z Statuses: write
2021-04-05T13:00:10.4764911Z ##[endgroup]
2021-04-05T13:00:10.4768376Z Prepare workflow directory
2021-04-05T13:00:10.5504537Z Prepare all required actions
2021-04-05T13:00:10.6432553Z ##[group]Run echo Hello from job2!
2021-04-05T13:00:10.6433151Z echo Hello from job2!
2021-04-05T13:00:10.7056857Z shell: /usr/bin/bash -e {0}
2021-04-05T13:00:10.7057616Z ##[endgroup]
2021-04-05T13:00:11.5337551Z Hello from job2!
2021-04-05T13:00:11.5387308Z Cleaning up orphan processes

View File

@@ -1,39 +0,0 @@
2021-04-05T13:14:30.9640427Z ##[section]Starting: Request a runner to run this job
2021-04-05T13:14:31.2171249Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2021-04-05T13:14:31.2171350Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T13:14:31.2171686Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T13:14:31.3348061Z ##[section]Finishing: Request a runner to run this job
2021-04-05T13:14:37.7261842Z Current runner version: '2.277.1'
2021-04-05T13:14:37.7290062Z ##[group]Operating System
2021-04-05T13:14:37.7291182Z Ubuntu
2021-04-05T13:14:37.7291658Z 20.04.2
2021-04-05T13:14:37.7292087Z LTS
2021-04-05T13:14:37.7292610Z ##[endgroup]
2021-04-05T13:14:37.7293181Z ##[group]Virtual Environment
2021-04-05T13:14:37.7293901Z Environment: ubuntu-20.04
2021-04-05T13:14:37.7294706Z Version: 20210330.1
2021-04-05T13:14:37.7295787Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20210330.1/images/linux/Ubuntu2004-README.md
2021-04-05T13:14:37.7297292Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20210330.1
2021-04-05T13:14:37.7298211Z ##[endgroup]
2021-04-05T13:14:37.7300420Z ##[group]GITHUB_TOKEN Permissions
2021-04-05T13:14:37.7301718Z Actions: write
2021-04-05T13:14:37.7302264Z Checks: write
2021-04-05T13:14:37.7302828Z Contents: write
2021-04-05T13:14:37.7303372Z Deployments: write
2021-04-05T13:14:37.7304044Z Issues: write
2021-04-05T13:14:37.7304631Z Metadata: read
2021-04-05T13:14:37.7305279Z OrganizationPackages: write
2021-04-05T13:14:37.7305968Z Packages: write
2021-04-05T13:14:37.7306525Z PullRequests: write
2021-04-05T13:14:37.7307179Z RepositoryProjects: write
2021-04-05T13:14:37.7307902Z SecurityEvents: write
2021-04-05T13:14:37.7308470Z Statuses: write
2021-04-05T13:14:37.7309106Z ##[endgroup]
2021-04-05T13:14:37.7312359Z Prepare workflow directory
2021-04-05T13:14:37.7993739Z Prepare all required actions
2021-04-05T13:14:37.8829028Z ##[group]Run echo Hello from job1!
2021-04-05T13:14:37.8829763Z echo Hello from job1!
2021-04-05T13:14:37.9601924Z shell: /usr/bin/bash -e {0}
2021-04-05T13:14:37.9602634Z ##[endgroup]
2021-04-05T13:14:38.8271437Z Hello from job1!
2021-04-05T13:14:38.8309826Z Cleaning up orphan processes

View File

@@ -1,39 +0,0 @@
2021-04-05T13:14:30.9644173Z ##[section]Starting: Request a runner to run this job
2021-04-05T13:14:31.2409107Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2021-04-05T13:14:31.2409226Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T13:14:31.2409408Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T13:14:31.4161492Z ##[section]Finishing: Request a runner to run this job
2021-04-05T13:14:38.6508368Z Current runner version: '2.277.1'
2021-04-05T13:14:38.6536243Z ##[group]Operating System
2021-04-05T13:14:38.6537337Z Ubuntu
2021-04-05T13:14:38.6537797Z 20.04.2
2021-04-05T13:14:38.6538273Z LTS
2021-04-05T13:14:38.6538788Z ##[endgroup]
2021-04-05T13:14:38.6539418Z ##[group]Virtual Environment
2021-04-05T13:14:38.6540086Z Environment: ubuntu-20.04
2021-04-05T13:14:38.6540714Z Version: 20210330.1
2021-04-05T13:14:38.6541850Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20210330.1/images/linux/Ubuntu2004-README.md
2021-04-05T13:14:38.6543203Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20210330.1
2021-04-05T13:14:38.6544137Z ##[endgroup]
2021-04-05T13:14:38.6546262Z ##[group]GITHUB_TOKEN Permissions
2021-04-05T13:14:38.6547469Z Actions: write
2021-04-05T13:14:38.6547958Z Checks: write
2021-04-05T13:14:38.6548439Z Contents: write
2021-04-05T13:14:38.6549031Z Deployments: write
2021-04-05T13:14:38.6549665Z Issues: write
2021-04-05T13:14:38.6550222Z Metadata: read
2021-04-05T13:14:38.6551015Z OrganizationPackages: write
2021-04-05T13:14:38.6551662Z Packages: write
2021-04-05T13:14:38.6552304Z PullRequests: write
2021-04-05T13:14:38.6552966Z RepositoryProjects: write
2021-04-05T13:14:38.6553642Z SecurityEvents: write
2021-04-05T13:14:38.6554285Z Statuses: write
2021-04-05T13:14:38.6554932Z ##[endgroup]
2021-04-05T13:14:38.6558263Z Prepare workflow directory
2021-04-05T13:14:38.7238319Z Prepare all required actions
2021-04-05T13:14:38.8026151Z ##[group]Run echo Hello from job2!
2021-04-05T13:14:38.8026791Z echo Hello from job2!
2021-04-05T13:14:38.8632670Z shell: /usr/bin/bash -e {0}
2021-04-05T13:14:38.8633399Z ##[endgroup]
2021-04-05T13:14:39.7846333Z Hello from job2!
2021-04-05T13:14:39.7884821Z Cleaning up orphan processes

View File

@@ -0,0 +1,39 @@
2021-04-05T15:42:49.0020645Z ##[section]Starting: Request a runner to run this job
2021-04-05T15:42:49.1987299Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2021-04-05T15:42:49.1987397Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T15:42:49.1987581Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T15:42:49.3426885Z ##[section]Finishing: Request a runner to run this job
2021-04-05T15:42:56.0567059Z Current runner version: '2.277.1'
2021-04-05T15:42:56.0600935Z ##[group]Operating System
2021-04-05T15:42:56.0601950Z Ubuntu
2021-04-05T15:42:56.0602426Z 20.04.2
2021-04-05T15:42:56.0602805Z LTS
2021-04-05T15:42:56.0603218Z ##[endgroup]
2021-04-05T15:42:56.0603764Z ##[group]Virtual Environment
2021-04-05T15:42:56.0604319Z Environment: ubuntu-20.04
2021-04-05T15:42:56.0604821Z Version: 20210330.1
2021-04-05T15:42:56.0605789Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20210330.1/images/linux/Ubuntu2004-README.md
2021-04-05T15:42:56.0607029Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20210330.1
2021-04-05T15:42:56.0607893Z ##[endgroup]
2021-04-05T15:42:56.0609926Z ##[group]GITHUB_TOKEN Permissions
2021-04-05T15:42:56.0611248Z Actions: write
2021-04-05T15:42:56.0611695Z Checks: write
2021-04-05T15:42:56.0612141Z Contents: write
2021-04-05T15:42:56.0612676Z Deployments: write
2021-04-05T15:42:56.0613281Z Issues: write
2021-04-05T15:42:56.0613770Z Metadata: read
2021-04-05T15:42:56.0614371Z OrganizationPackages: write
2021-04-05T15:42:56.0614921Z Packages: write
2021-04-05T15:42:56.0615409Z PullRequests: write
2021-04-05T15:42:56.0616025Z RepositoryProjects: write
2021-04-05T15:42:56.0616595Z SecurityEvents: write
2021-04-05T15:42:56.0617170Z Statuses: write
2021-04-05T15:42:56.0618112Z ##[endgroup]
2021-04-05T15:42:56.0621459Z Prepare workflow directory
2021-04-05T15:42:56.1404407Z Prepare all required actions
2021-04-05T15:42:56.2234997Z ##[group]Run echo Hello from job2!
2021-04-05T15:42:56.2235638Z echo Hello from job2!
2021-04-05T15:42:56.2823776Z shell: /usr/bin/bash -e {0}
2021-04-05T15:42:56.2824500Z ##[endgroup]
2021-04-05T15:42:57.2686945Z Hello from job2!
2021-04-05T15:42:57.2720038Z Cleaning up orphan processes

View File

@@ -0,0 +1,39 @@
2021-04-05T15:42:49.0017341Z ##[section]Starting: Request a runner to run this job
2021-04-05T15:42:49.1926765Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2021-04-05T15:42:49.1926884Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T15:42:49.1927228Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-04-05T15:42:49.5089527Z ##[section]Finishing: Request a runner to run this job
2021-04-05T15:42:57.9954489Z Current runner version: '2.277.1'
2021-04-05T15:42:57.9983528Z ##[group]Operating System
2021-04-05T15:42:57.9984655Z Ubuntu
2021-04-05T15:42:57.9985123Z 20.04.2
2021-04-05T15:42:57.9985556Z LTS
2021-04-05T15:42:57.9986091Z ##[endgroup]
2021-04-05T15:42:57.9986659Z ##[group]Virtual Environment
2021-04-05T15:42:57.9987375Z Environment: ubuntu-20.04
2021-04-05T15:42:57.9987957Z Version: 20210330.1
2021-04-05T15:42:57.9989042Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20210330.1/images/linux/Ubuntu2004-README.md
2021-04-05T15:42:57.9990546Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20210330.1
2021-04-05T15:42:57.9991460Z ##[endgroup]
2021-04-05T15:42:57.9993761Z ##[group]GITHUB_TOKEN Permissions
2021-04-05T15:42:57.9995106Z Actions: write
2021-04-05T15:42:57.9995651Z Checks: write
2021-04-05T15:42:57.9996220Z Contents: write
2021-04-05T15:42:57.9996772Z Deployments: write
2021-04-05T15:42:57.9997453Z Issues: write
2021-04-05T15:42:57.9998068Z Metadata: read
2021-04-05T15:42:57.9998698Z OrganizationPackages: write
2021-04-05T15:42:57.9999336Z Packages: write
2021-04-05T15:42:57.9999958Z PullRequests: write
2021-04-05T15:42:58.0000607Z RepositoryProjects: write
2021-04-05T15:42:58.0001336Z SecurityEvents: write
2021-04-05T15:42:58.0001923Z Statuses: write
2021-04-05T15:42:58.0002531Z ##[endgroup]
2021-04-05T15:42:58.0006186Z Prepare workflow directory
2021-04-05T15:42:58.0698369Z Prepare all required actions
2021-04-05T15:42:58.1548942Z ##[group]Run echo Hello from job1!
2021-04-05T15:42:58.1549657Z echo Hello from job1!
2021-04-05T15:42:58.2202465Z shell: /usr/bin/bash -e {0}
2021-04-05T15:42:58.2203179Z ##[endgroup]
2021-04-05T15:42:59.1138440Z Hello from job1!
2021-04-05T15:42:59.1177315Z Cleaning up orphan processes

View File

@@ -1,34 +0,0 @@
{
"id": "138678bb-85b7-46ae-b758-c36010c4c707",
"name": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_135_signedlogcontent_4",
"request": {
"url": "/u72ug1Ib1ZBCtek798HyrDYOU28rBK6ssrOKf37ZxrpgUbk95I/_apis/pipelines/1/runs/135/signedlogcontent/4?urlExpires=2021-04-05T13%3A01%3A23.3097327Z&urlSigningMethod=HMACV1&urlSignature=7V7SBU2eaSOrZZ%2F7wow%2F71%2Fi0pQ37HZVxDY1aF%2FuP7g%3D",
"method": "GET",
"headers": {
"Accept": {
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
}
}
},
"response": {
"status": 200,
"bodyFileName": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_135_signedlogcontent_4-2.txt",
"headers": {
"Cache-Control": "no-store,no-cache",
"Pragma": "no-cache",
"Content-Type": "text/plain; charset=utf-8",
"Vary": "Accept-Encoding",
"Strict-Transport-Security": "max-age=2592000",
"X-TFS-ProcessId": "574c71d8-7bc3-4707-8eb7-2d7b2c84ca87",
"ActivityId": "b03ef986-97db-41fb-ae0a-f36c8f550702",
"X-TFS-Session": "b03ef986-97db-41fb-ae0a-f36c8f550702",
"X-VSS-E2EID": "b03ef986-97db-41fb-ae0a-f36c8f550702",
"X-VSS-SenderDeploymentId": "2c974d96-2c30-cef5-eff2-3e0511a903a5",
"X-MSEdge-Ref": "Ref A: AE6CEE45671E4E7AA88E1384FD63398B Ref B: MRS20EDGE0109 Ref C: 2021-04-05T13:00:23Z",
"Date": "Mon, 05 Apr 2021 13:00:23 GMT"
}
},
"uuid": "138678bb-85b7-46ae-b758-c36010c4c707",
"persistent": true,
"insertionIndex": 2
}

View File

@@ -1,34 +0,0 @@
{
"id": "462cdbdc-8c12-4042-9371-f8d3bd3dc76b",
"name": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_136_signedlogcontent_4",
"request": {
"url": "/u72ug1Ib1ZBCtek798HyrDYOU28rBK6ssrOKf37ZxrpgUbk95I/_apis/pipelines/1/runs/136/signedlogcontent/4?urlExpires=2021-04-05T13%3A15%3A51.6173063Z&urlSigningMethod=HMACV1&urlSignature=u8xNrhIfomvqSZDbM%2Bn4R9hMYK38vmaIX8GgBJAtNSY%3D",
"method": "GET",
"headers": {
"Accept": {
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
}
}
},
"response": {
"status": 200,
"bodyFileName": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_136_signedlogcontent_4-4.txt",
"headers": {
"Cache-Control": "no-store,no-cache",
"Pragma": "no-cache",
"Content-Type": "text/plain; charset=utf-8",
"Vary": "Accept-Encoding",
"Strict-Transport-Security": "max-age=2592000",
"X-TFS-ProcessId": "0c574eb8-2cea-4c9e-a4f3-0c7ecc98b74b",
"ActivityId": "5ec76528-62a5-416a-a915-c4537459279c",
"X-TFS-Session": "5ec76528-62a5-416a-a915-c4537459279c",
"X-VSS-E2EID": "5ec76528-62a5-416a-a915-c4537459279c",
"X-VSS-SenderDeploymentId": "2c974d96-2c30-cef5-eff2-3e0511a903a5",
"X-MSEdge-Ref": "Ref A: 3F2B66C623F74B4EAD1622FB8668C4FD Ref B: MRS20EDGE0114 Ref C: 2021-04-05T13:14:51Z",
"Date": "Mon, 05 Apr 2021 13:14:52 GMT"
}
},
"uuid": "462cdbdc-8c12-4042-9371-f8d3bd3dc76b",
"persistent": true,
"insertionIndex": 4
}

View File

@@ -1,34 +0,0 @@
{
"id": "d026ff59-e581-4a04-9bd5-02a8f575ab5e",
"name": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_136_signedlogcontent_5",
"request": {
"url": "/u72ug1Ib1ZBCtek798HyrDYOU28rBK6ssrOKf37ZxrpgUbk95I/_apis/pipelines/1/runs/136/signedlogcontent/5?urlExpires=2021-04-05T13%3A15%3A52.3749500Z&urlSigningMethod=HMACV1&urlSignature=gvBxNhvLLsKDO9z7azGKIWMBwfWZvehkVTlsB8%2Bw8%2FY%3D",
"method": "GET",
"headers": {
"Accept": {
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
}
}
},
"response": {
"status": 200,
"bodyFileName": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_136_signedlogcontent_5-5.txt",
"headers": {
"Cache-Control": "no-store,no-cache",
"Pragma": "no-cache",
"Content-Type": "text/plain; charset=utf-8",
"Vary": "Accept-Encoding",
"Strict-Transport-Security": "max-age=2592000",
"X-TFS-ProcessId": "0c574eb8-2cea-4c9e-a4f3-0c7ecc98b74b",
"ActivityId": "5ec76a7a-62a5-416a-a915-c4537459279c",
"X-TFS-Session": "5ec76a7a-62a5-416a-a915-c4537459279c",
"X-VSS-E2EID": "5ec76a7a-62a5-416a-a915-c4537459279c",
"X-VSS-SenderDeploymentId": "2c974d96-2c30-cef5-eff2-3e0511a903a5",
"X-MSEdge-Ref": "Ref A: 593FBB27C8A246DA9ABAFDB826D4E036 Ref B: MRS20EDGE0114 Ref C: 2021-04-05T13:14:52Z",
"Date": "Mon, 05 Apr 2021 13:14:52 GMT"
}
},
"uuid": "d026ff59-e581-4a04-9bd5-02a8f575ab5e",
"persistent": true,
"insertionIndex": 5
}

View File

@@ -1,8 +1,8 @@
{
"id": "dbd3b737-7cc5-4d52-93ce-8f971a0c1f73",
"name": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_135_signedlogcontent_5",
"id": "53046453-bf1e-49ad-9c78-dabbad7587f7",
"name": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_139_signedlogcontent_4",
"request": {
"url": "/u72ug1Ib1ZBCtek798HyrDYOU28rBK6ssrOKf37ZxrpgUbk95I/_apis/pipelines/1/runs/135/signedlogcontent/5?urlExpires=2021-04-05T13%3A01%3A23.7685055Z&urlSigningMethod=HMACV1&urlSignature=7jVtOpls5N5nc1fLqjMuWfWiv5ddksWCsDhmGZG7BKo%3D",
"url": "/u72ug1Ib1ZBCtek798HyrDYOU28rBK6ssrOKf37ZxrpgUbk95I/_apis/pipelines/1/runs/139/signedlogcontent/4?urlExpires=2021-04-05T15%3A44%3A10.8371854Z&urlSigningMethod=HMACV1&urlSignature=uQbYtzzKCaCe0FzhPYJV0y1bcSdRhvUa6rcfDXGGXnE%3D",
"method": "GET",
"headers": {
"Accept": {
@@ -12,7 +12,7 @@
},
"response": {
"status": 200,
"bodyFileName": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_135_signedlogcontent_5-3.txt",
"bodyFileName": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_139_signedlogcontent_4-2.txt",
"headers": {
"Cache-Control": "no-store,no-cache",
"Pragma": "no-cache",
@@ -20,15 +20,15 @@
"Vary": "Accept-Encoding",
"Strict-Transport-Security": "max-age=2592000",
"X-TFS-ProcessId": "34235e3d-7521-424c-ae95-23b6414e1cc4",
"ActivityId": "fb6ddd18-85df-4ab4-be58-17b0c6aab679",
"X-TFS-Session": "fb6ddd18-85df-4ab4-be58-17b0c6aab679",
"X-VSS-E2EID": "fb6ddd18-85df-4ab4-be58-17b0c6aab679",
"ActivityId": "faa24bd7-85df-4ab4-be58-17b0c6aab679",
"X-TFS-Session": "faa24bd7-85df-4ab4-be58-17b0c6aab679",
"X-VSS-E2EID": "faa24bd7-85df-4ab4-be58-17b0c6aab679",
"X-VSS-SenderDeploymentId": "2c974d96-2c30-cef5-eff2-3e0511a903a5",
"X-MSEdge-Ref": "Ref A: 7CB4E4FCCF97459E84C60C3E67AD00EF Ref B: MRS20EDGE0109 Ref C: 2021-04-05T13:00:23Z",
"Date": "Mon, 05 Apr 2021 13:00:23 GMT"
"X-MSEdge-Ref": "Ref A: FD222374D0654565B97884C60B71CBAD Ref B: MRS20EDGE0121 Ref C: 2021-04-05T15:43:10Z",
"Date": "Mon, 05 Apr 2021 15:43:11 GMT"
}
},
"uuid": "dbd3b737-7cc5-4d52-93ce-8f971a0c1f73",
"uuid": "53046453-bf1e-49ad-9c78-dabbad7587f7",
"persistent": true,
"insertionIndex": 3
"insertionIndex": 2
}

View File

@@ -1,8 +1,8 @@
{
"id": "7516d467-8f07-4ca8-8b95-1492497460bc",
"name": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_132_signedlogcontent_5",
"id": "86bb7f69-ec62-46a9-a275-e4a5363c6dd7",
"name": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_139_signedlogcontent_5",
"request": {
"url": "/u72ug1Ib1ZBCtek798HyrDYOU28rBK6ssrOKf37ZxrpgUbk95I/_apis/pipelines/1/runs/132/signedlogcontent/5?urlExpires=2021-04-05T12%3A43%3A19.7498350Z&urlSigningMethod=HMACV1&urlSignature=qTiiukhaCKSEHJ84oHg%2B2jxRCyLoHYRMPN5eDh%2BJkTQ%3D",
"url": "/u72ug1Ib1ZBCtek798HyrDYOU28rBK6ssrOKf37ZxrpgUbk95I/_apis/pipelines/1/runs/139/signedlogcontent/5?urlExpires=2021-04-05T15%3A44%3A09.8999243Z&urlSigningMethod=HMACV1&urlSignature=CLJeOMWVKrxsNSCeMNmmq%2F7q6aythG5XOtkWAy1Z59s%3D",
"method": "GET",
"headers": {
"Accept": {
@@ -12,7 +12,7 @@
},
"response": {
"status": 200,
"bodyFileName": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_132_signedlogcontent_5-1.txt",
"bodyFileName": "u72ug1ib1zbctek798hyrdyou28rbk6ssrokf37zxrpgubk95i__apis_pipelines_1_runs_139_signedlogcontent_5-1.txt",
"headers": {
"Cache-Control": "no-store,no-cache",
"Pragma": "no-cache",
@@ -20,15 +20,15 @@
"Vary": "Accept-Encoding",
"Strict-Transport-Security": "max-age=2592000",
"X-TFS-ProcessId": "34235e3d-7521-424c-ae95-23b6414e1cc4",
"ActivityId": "fb621869-85df-4ab4-be58-17b0c6aab679",
"X-TFS-Session": "fb621869-85df-4ab4-be58-17b0c6aab679",
"X-VSS-E2EID": "fb621869-85df-4ab4-be58-17b0c6aab679",
"ActivityId": "faa2340f-85df-4ab4-be58-17b0c6aab679",
"X-TFS-Session": "faa2340f-85df-4ab4-be58-17b0c6aab679",
"X-VSS-E2EID": "faa2340f-85df-4ab4-be58-17b0c6aab679",
"X-VSS-SenderDeploymentId": "2c974d96-2c30-cef5-eff2-3e0511a903a5",
"X-MSEdge-Ref": "Ref A: 780983DBDD4E4EFFAAC54FE9305A6DD0 Ref B: MRS20EDGE0108 Ref C: 2021-04-05T12:42:19Z",
"Date": "Mon, 05 Apr 2021 12:42:20 GMT"
"X-MSEdge-Ref": "Ref A: 52159E0EBBF3430AA878144C1DD372D6 Ref B: MRS20EDGE0121 Ref C: 2021-04-05T15:43:10Z",
"Date": "Mon, 05 Apr 2021 15:43:10 GMT"
}
},
"uuid": "7516d467-8f07-4ca8-8b95-1492497460bc",
"uuid": "86bb7f69-ec62-46a9-a275-e4a5363c6dd7",
"persistent": true,
"insertionIndex": 1
}