diff --git a/lib/src/cache.dart b/lib/src/cache.dart index d3573ea..3a6e21a 100644 --- a/lib/src/cache.dart +++ b/lib/src/cache.dart @@ -619,7 +619,6 @@ class FlutterpiCache extends FlutterCache { required ProcessManager processManager, required ShutdownHooks hooks, required MyGithub github, - io.HttpClient? httpClient, gh.RepositorySlug? repo, }) { repo ??= gh.RepositorySlug('ardera', 'flutter-ci'); @@ -661,7 +660,6 @@ class FlutterpiCache extends FlutterCache { gh.RepositorySlug? repo, required String runId, String? availableEngineVersion, - io.HttpClient? httpClient, }) { repo ??= gh.RepositorySlug('ardera', 'flutter-ci'); @@ -806,6 +804,7 @@ class FlutterpiCache extends FlutterCache { cipdBaseUrl, storageBaseUrl, 'https://github.com/ardera/flutter-pi', + 'https://api.github.com/repos/ardera/flutter-ci/', ]; /// This has to be lazy because it requires FLUTTER_ROOT to be initialized. diff --git a/lib/src/github.dart b/lib/src/github.dart index 8315e7e..174ee98 100644 --- a/lib/src/github.dart +++ b/lib/src/github.dart @@ -75,9 +75,8 @@ abstract class MyGithub { final artifacts = await getWorkflowRunArtifacts( repo: repo, runId: runId, - nameFilter: name, ); - return artifacts.singleOrNull; + return artifacts.where((a) => a.name == name).firstOrNull; } void authenticate(io.HttpClientRequest request); @@ -128,12 +127,30 @@ class MyGithubImpl extends MyGithub { }) async { final path = workflowRunArtifactsUrlPath(repo, runId); - final response = await github.getJSON(path); - final results = []; - for (final artifact in response['artifacts']) { - results.add(GithubArtifact.fromJson(artifact)); - } + + int? total; + var page = 1; + var fetched = 0; + do { + final response = await github.getJSON( + path, + params: { + if (nameFilter != null) 'name': nameFilter, + 'page': page.toString(), + 'per_page': '100', + }, + ); + + total ??= response['total_count'] as int; + + for (final artifact in response['artifacts']) { + results.add(GithubArtifact.fromJson(artifact)); + } + + fetched += (response['artifacts'] as Iterable).length; + page++; + } while (fetched < total); return results; } diff --git a/test/github_test.dart b/test/github_test.dart new file mode 100644 index 0000000..440f1e9 --- /dev/null +++ b/test/github_test.dart @@ -0,0 +1,64 @@ +import 'package:flutterpi_tool/src/github.dart'; +import 'package:github/github.dart'; +import 'package:http/http.dart'; +import 'package:http/testing.dart'; +import 'package:test/test.dart'; + +import 'github_test_api_output.dart'; + +void main() { + test('workflow artifacts querying', () async { + final client = MockClient((request) async { + final uri1 = + 'https://api.github.com/repos/ardera/flutter-ci/actions/runs/10332084071/artifacts?page=1&per_page=100'; + + final uri2 = + 'https://api.github.com/repos/ardera/flutter-ci/actions/runs/10332084071/artifacts?page=2&per_page=100'; + + expect( + request.url.toString(), + anyOf(equals(uri1), equals(uri2)), + ); + + if (request.url.queryParameters['page'] == '1') { + return Response( + githubWorkflowRunArtifactsPage1, + 200, + headers: { + 'Content-Type': 'application/json', + }, + ); + } else { + expect(request.url.queryParameters['page'], '2'); + return Response( + githubWorkflowRunArtifactsPage2, + 200, + headers: { + 'Content-Type': 'application/json', + }, + ); + } + }); + + final github = MyGithub( + httpClient: client, + ); + + final artifact = await github.getWorkflowRunArtifact( + 'universal', + repo: RepositorySlug('ardera', 'flutter-ci'), + runId: 10332084071, + ); + + expect(artifact, isNotNull); + artifact!; + + expect(artifact.name, 'universal'); + + expect(artifact.archiveDownloadUrl, isNotNull); + expect( + artifact.archiveDownloadUrl.toString(), + 'https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797913057/zip', + ); + }); +} diff --git a/test/github_test_api_output.dart b/test/github_test_api_output.dart new file mode 100644 index 0000000..d9b254f --- /dev/null +++ b/test/github_test_api_output.dart @@ -0,0 +1,3815 @@ +const githubWorkflowRunArtifactsPage1 = ''' +{ + "total_count": 136, + "artifacts": [ + { + "id": 1797913057, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTEzMDU3", + "name": "universal", + "size_in_bytes": 4807995, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797913057", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797913057/zip", + "expired": false, + "created_at": "2024-08-10T13:50:19Z", + "updated_at": "2024-08-10T13:50:19Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797913069, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTEzMDY5", + "name": "universal-tar-xz", + "size_in_bytes": 3372460, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797913069", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797913069/zip", + "expired": false, + "created_at": "2024-08-10T13:50:19Z", + "updated_at": "2024-08-10T13:50:19Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920257, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwMjU3", + "name": "gen-snapshot-Windows-X64-armv7-generic-release", + "size_in_bytes": 2209187, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920257", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920257/zip", + "expired": false, + "created_at": "2024-08-10T13:59:21Z", + "updated_at": "2024-08-10T13:59:21Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920271, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwMjcx", + "name": "gen-snapshot-Windows-X64-armv7-generic-release-tar-xz", + "size_in_bytes": 1669246, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920271", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920271/zip", + "expired": false, + "created_at": "2024-08-10T13:59:23Z", + "updated_at": "2024-08-10T13:59:23Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920463, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwNDYz", + "name": "gen-snapshot-Windows-X64-aarch64-generic-profile", + "size_in_bytes": 2730465, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920463", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920463/zip", + "expired": false, + "created_at": "2024-08-10T13:59:40Z", + "updated_at": "2024-08-10T13:59:40Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920482, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwNDgy", + "name": "gen-snapshot-Windows-X64-aarch64-generic-profile-tar-xz", + "size_in_bytes": 2017800, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920482", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920482/zip", + "expired": false, + "created_at": "2024-08-10T13:59:42Z", + "updated_at": "2024-08-10T13:59:42Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920528, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwNTI4", + "name": "gen-snapshot-Windows-X64-aarch64-generic-release", + "size_in_bytes": 2462856, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920528", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920528/zip", + "expired": false, + "created_at": "2024-08-10T13:59:46Z", + "updated_at": "2024-08-10T13:59:46Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920543, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwNTQz", + "name": "gen-snapshot-Windows-X64-aarch64-generic-release-tar-xz", + "size_in_bytes": 1816863, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920543", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920543/zip", + "expired": false, + "created_at": "2024-08-10T13:59:48Z", + "updated_at": "2024-08-10T13:59:48Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920797, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwNzk3", + "name": "gen-snapshot-Windows-X64-x64-generic-profile", + "size_in_bytes": 2554863, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920797", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920797/zip", + "expired": false, + "created_at": "2024-08-10T14:00:11Z", + "updated_at": "2024-08-10T14:00:11Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920835, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwODM1", + "name": "gen-snapshot-Windows-X64-x64-generic-profile-tar-xz", + "size_in_bytes": 1919714, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920835", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920835/zip", + "expired": false, + "created_at": "2024-08-10T14:00:12Z", + "updated_at": "2024-08-10T14:00:12Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920896, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwODk2", + "name": "gen-snapshot-Windows-X64-x64-generic-release", + "size_in_bytes": 2283532, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920896", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920896/zip", + "expired": false, + "created_at": "2024-08-10T14:00:18Z", + "updated_at": "2024-08-10T14:00:18Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920901, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwOTAx", + "name": "gen-snapshot-Windows-X64-x64-generic-release-tar-xz", + "size_in_bytes": 1712417, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920901", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920901/zip", + "expired": false, + "created_at": "2024-08-10T14:00:18Z", + "updated_at": "2024-08-10T14:00:18Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797921458, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIxNDU4", + "name": "gen-snapshot-Windows-X64-armv7-generic-profile", + "size_in_bytes": 2464710, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797921458", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797921458/zip", + "expired": false, + "created_at": "2024-08-10T14:00:51Z", + "updated_at": "2024-08-10T14:00:51Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797921479, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIxNDc5", + "name": "gen-snapshot-Windows-X64-armv7-generic-profile-tar-xz", + "size_in_bytes": 1863122, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797921479", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797921479/zip", + "expired": false, + "created_at": "2024-08-10T14:00:52Z", + "updated_at": "2024-08-10T14:00:52Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797922374, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIyMzc0", + "name": "gen-snapshot-macOS-X64-armv7-generic-release", + "size_in_bytes": 2850918, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797922374", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797922374/zip", + "expired": false, + "created_at": "2024-08-10T14:01:54Z", + "updated_at": "2024-08-10T14:01:54Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797922394, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIyMzk0", + "name": "gen-snapshot-macOS-X64-armv7-generic-release-tar-xz", + "size_in_bytes": 1990586, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797922394", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797922394/zip", + "expired": false, + "created_at": "2024-08-10T14:01:55Z", + "updated_at": "2024-08-10T14:01:55Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797923257, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIzMjU3", + "name": "gen-snapshot-macOS-X64-x64-generic-release", + "size_in_bytes": 3015450, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923257", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923257/zip", + "expired": false, + "created_at": "2024-08-10T14:02:49Z", + "updated_at": "2024-08-10T14:02:49Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797923305, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIzMzA1", + "name": "gen-snapshot-macOS-X64-x64-generic-release-tar-xz", + "size_in_bytes": 2076523, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923305", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923305/zip", + "expired": false, + "created_at": "2024-08-10T14:02:51Z", + "updated_at": "2024-08-10T14:02:51Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797923390, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIzMzkw", + "name": "gen-snapshot-macOS-X64-aarch64-generic-profile", + "size_in_bytes": 3536123, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923390", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923390/zip", + "expired": false, + "created_at": "2024-08-10T14:02:55Z", + "updated_at": "2024-08-10T14:02:55Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797923419, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIzNDE5", + "name": "gen-snapshot-macOS-X64-aarch64-generic-profile-tar-xz", + "size_in_bytes": 2429697, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923419", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923419/zip", + "expired": false, + "created_at": "2024-08-10T14:02:57Z", + "updated_at": "2024-08-10T14:02:57Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797923736, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIzNzM2", + "name": "gen-snapshot-macOS-X64-aarch64-generic-release", + "size_in_bytes": 3086485, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923736", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923736/zip", + "expired": false, + "created_at": "2024-08-10T14:03:16Z", + "updated_at": "2024-08-10T14:03:16Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797923762, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIzNzYy", + "name": "gen-snapshot-macOS-X64-aarch64-generic-release-tar-xz", + "size_in_bytes": 2126006, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923762", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923762/zip", + "expired": false, + "created_at": "2024-08-10T14:03:18Z", + "updated_at": "2024-08-10T14:03:18Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797925546, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTI1NTQ2", + "name": "gen-snapshot-macOS-X64-armv7-generic-profile", + "size_in_bytes": 3299693, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797925546", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797925546/zip", + "expired": false, + "created_at": "2024-08-10T14:05:13Z", + "updated_at": "2024-08-10T14:05:13Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797925566, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTI1NTY2", + "name": "gen-snapshot-macOS-X64-armv7-generic-profile-tar-xz", + "size_in_bytes": 2293132, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797925566", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797925566/zip", + "expired": false, + "created_at": "2024-08-10T14:05:13Z", + "updated_at": "2024-08-10T14:05:13Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797938592, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTM4NTky", + "name": "gen-snapshot-macOS-X64-x64-generic-profile", + "size_in_bytes": 3458952, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797938592", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797938592/zip", + "expired": false, + "created_at": "2024-08-10T14:18:15Z", + "updated_at": "2024-08-10T14:18:15Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797938617, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTM4NjE3", + "name": "gen-snapshot-macOS-X64-x64-generic-profile-tar-xz", + "size_in_bytes": 2378998, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797938617", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797938617/zip", + "expired": false, + "created_at": "2024-08-10T14:18:16Z", + "updated_at": "2024-08-10T14:18:16Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941151, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxMTUx", + "name": "engine-pi4-release", + "size_in_bytes": 6408862, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941151", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941151/zip", + "expired": false, + "created_at": "2024-08-10T14:21:36Z", + "updated_at": "2024-08-10T14:21:36Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941168, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxMTY4", + "name": "engine-pi4-release-tar-xz", + "size_in_bytes": 4284102, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941168", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941168/zip", + "expired": false, + "created_at": "2024-08-10T14:21:37Z", + "updated_at": "2024-08-10T14:21:37Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941273, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxMjcz", + "name": "engine-dbgsyms-pi4-release", + "size_in_bytes": 84967154, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941273", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941273/zip", + "expired": false, + "created_at": "2024-08-10T14:21:44Z", + "updated_at": "2024-08-10T14:21:44Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941306, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxMzA2", + "name": "engine-dbgsyms-pi4-release-tar-xz", + "size_in_bytes": 52164355, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941306", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941306/zip", + "expired": false, + "created_at": "2024-08-10T14:21:46Z", + "updated_at": "2024-08-10T14:21:46Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941619, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxNjE5", + "name": "engine-pi3-profile", + "size_in_bytes": 7728878, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941619", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941619/zip", + "expired": false, + "created_at": "2024-08-10T14:22:05Z", + "updated_at": "2024-08-10T14:22:05Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941632, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxNjMy", + "name": "engine-pi3-profile-tar-xz", + "size_in_bytes": 5309900, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941632", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941632/zip", + "expired": false, + "created_at": "2024-08-10T14:22:06Z", + "updated_at": "2024-08-10T14:22:06Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941727, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxNzI3", + "name": "engine-pi3-release", + "size_in_bytes": 6375458, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941727", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941727/zip", + "expired": false, + "created_at": "2024-08-10T14:22:11Z", + "updated_at": "2024-08-10T14:22:11Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941737, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxNzM3", + "name": "engine-pi3-release-tar-xz", + "size_in_bytes": 4268073, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941737", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941737/zip", + "expired": false, + "created_at": "2024-08-10T14:22:12Z", + "updated_at": "2024-08-10T14:22:12Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941761, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxNzYx", + "name": "engine-dbgsyms-pi3-profile", + "size_in_bytes": 87295052, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941761", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941761/zip", + "expired": false, + "created_at": "2024-08-10T14:22:13Z", + "updated_at": "2024-08-10T14:22:13Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941794, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxNzk0", + "name": "engine-dbgsyms-pi3-profile-tar-xz", + "size_in_bytes": 53616884, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941794", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941794/zip", + "expired": false, + "created_at": "2024-08-10T14:22:16Z", + "updated_at": "2024-08-10T14:22:16Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941858, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxODU4", + "name": "engine-dbgsyms-pi3-release", + "size_in_bytes": 84863600, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941858", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941858/zip", + "expired": false, + "created_at": "2024-08-10T14:22:19Z", + "updated_at": "2024-08-10T14:22:19Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941887, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxODg3", + "name": "engine-dbgsyms-pi3-release-tar-xz", + "size_in_bytes": 52108936, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941887", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941887/zip", + "expired": false, + "created_at": "2024-08-10T14:22:21Z", + "updated_at": "2024-08-10T14:22:21Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942605, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNjA1", + "name": "engine-pi4-64-release", + "size_in_bytes": 6925417, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942605", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942605/zip", + "expired": false, + "created_at": "2024-08-10T14:23:10Z", + "updated_at": "2024-08-10T14:23:10Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942622, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNjIy", + "name": "engine-pi4-64-release-tar-xz", + "size_in_bytes": 4481276, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942622", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942622/zip", + "expired": false, + "created_at": "2024-08-10T14:23:12Z", + "updated_at": "2024-08-10T14:23:12Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942662, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNjYy", + "name": "engine-pi3-64-release", + "size_in_bytes": 7253002, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942662", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942662/zip", + "expired": false, + "created_at": "2024-08-10T14:23:14Z", + "updated_at": "2024-08-10T14:23:14Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942676, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNjc2", + "name": "engine-pi3-64-release-tar-xz", + "size_in_bytes": 4724763, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942676", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942676/zip", + "expired": false, + "created_at": "2024-08-10T14:23:15Z", + "updated_at": "2024-08-10T14:23:15Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942741, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNzQx", + "name": "engine-dbgsyms-pi4-64-release", + "size_in_bytes": 83461984, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942741", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942741/zip", + "expired": false, + "created_at": "2024-08-10T14:23:19Z", + "updated_at": "2024-08-10T14:23:19Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942786, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNzg2", + "name": "engine-dbgsyms-pi3-64-release", + "size_in_bytes": 85926783, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942786", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942786/zip", + "expired": false, + "created_at": "2024-08-10T14:23:22Z", + "updated_at": "2024-08-10T14:23:22Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942792, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNzky", + "name": "engine-dbgsyms-pi4-64-release-tar-xz", + "size_in_bytes": 50900520, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942792", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942792/zip", + "expired": false, + "created_at": "2024-08-10T14:23:23Z", + "updated_at": "2024-08-10T14:23:23Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942833, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyODMz", + "name": "engine-dbgsyms-pi3-64-release-tar-xz", + "size_in_bytes": 52549633, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942833", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942833/zip", + "expired": false, + "created_at": "2024-08-10T14:23:24Z", + "updated_at": "2024-08-10T14:23:24Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943104, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMTA0", + "name": "engine-pi4-64-profile", + "size_in_bytes": 8297651, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943104", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943104/zip", + "expired": false, + "created_at": "2024-08-10T14:23:42Z", + "updated_at": "2024-08-10T14:23:42Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943120, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMTIw", + "name": "engine-pi4-64-profile-tar-xz", + "size_in_bytes": 5521383, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943120", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943120/zip", + "expired": false, + "created_at": "2024-08-10T14:23:44Z", + "updated_at": "2024-08-10T14:23:44Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943152, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMTUy", + "name": "engine-pi4-profile", + "size_in_bytes": 7764476, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943152", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943152/zip", + "expired": false, + "created_at": "2024-08-10T14:23:46Z", + "updated_at": "2024-08-10T14:23:46Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943160, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMTYw", + "name": "engine-pi4-profile-tar-xz", + "size_in_bytes": 5325653, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943160", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943160/zip", + "expired": false, + "created_at": "2024-08-10T14:23:47Z", + "updated_at": "2024-08-10T14:23:47Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943243, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMjQz", + "name": "engine-dbgsyms-pi4-64-profile", + "size_in_bytes": 85765959, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943243", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943243/zip", + "expired": false, + "created_at": "2024-08-10T14:23:52Z", + "updated_at": "2024-08-10T14:23:52Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943269, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMjY5", + "name": "engine-dbgsyms-pi4-profile", + "size_in_bytes": 87387127, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943269", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943269/zip", + "expired": false, + "created_at": "2024-08-10T14:23:54Z", + "updated_at": "2024-08-10T14:23:54Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943287, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMjg3", + "name": "engine-dbgsyms-pi4-64-profile-tar-xz", + "size_in_bytes": 52457971, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943287", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943287/zip", + "expired": false, + "created_at": "2024-08-10T14:23:55Z", + "updated_at": "2024-08-10T14:23:55Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943311, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMzEx", + "name": "engine-dbgsyms-pi4-profile-tar-xz", + "size_in_bytes": 53679672, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943311", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943311/zip", + "expired": false, + "created_at": "2024-08-10T14:23:56Z", + "updated_at": "2024-08-10T14:23:56Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943708, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzNzA4", + "name": "engine-pi3-64-profile", + "size_in_bytes": 8639034, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943708", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943708/zip", + "expired": false, + "created_at": "2024-08-10T14:24:24Z", + "updated_at": "2024-08-10T14:24:24Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943730, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzNzMw", + "name": "engine-pi3-64-profile-tar-xz", + "size_in_bytes": 5783539, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943730", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943730/zip", + "expired": false, + "created_at": "2024-08-10T14:24:26Z", + "updated_at": "2024-08-10T14:24:26Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943850, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzODUw", + "name": "engine-dbgsyms-pi3-64-profile", + "size_in_bytes": 88295771, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943850", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943850/zip", + "expired": false, + "created_at": "2024-08-10T14:24:34Z", + "updated_at": "2024-08-10T14:24:34Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943895, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzODk1", + "name": "engine-dbgsyms-pi3-64-profile-tar-xz", + "size_in_bytes": 54038828, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943895", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943895/zip", + "expired": false, + "created_at": "2024-08-10T14:24:37Z", + "updated_at": "2024-08-10T14:24:37Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797944337, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ0MzM3", + "name": "engine-x64-generic-debug_unopt", + "size_in_bytes": 31616034, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944337", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944337/zip", + "expired": false, + "created_at": "2024-08-10T14:25:03Z", + "updated_at": "2024-08-10T14:25:03Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797944364, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ0MzY0", + "name": "engine-x64-generic-debug_unopt-tar-xz", + "size_in_bytes": 19722328, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944364", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944364/zip", + "expired": false, + "created_at": "2024-08-10T14:25:05Z", + "updated_at": "2024-08-10T14:25:05Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797944507, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ0NTA3", + "name": "engine-dbgsyms-x64-generic-debug_unopt", + "size_in_bytes": 102466911, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944507", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944507/zip", + "expired": false, + "created_at": "2024-08-10T14:25:15Z", + "updated_at": "2024-08-10T14:25:15Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797944553, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ0NTUz", + "name": "engine-dbgsyms-x64-generic-debug_unopt-tar-xz", + "size_in_bytes": 60273354, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944553", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944553/zip", + "expired": false, + "created_at": "2024-08-10T14:25:18Z", + "updated_at": "2024-08-10T14:25:18Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797945550, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ1NTUw", + "name": "engine-armv7-generic-debug_unopt", + "size_in_bytes": 28733988, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945550", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945550/zip", + "expired": false, + "created_at": "2024-08-10T14:26:28Z", + "updated_at": "2024-08-10T14:26:28Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797945595, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ1NTk1", + "name": "engine-armv7-generic-debug_unopt-tar-xz", + "size_in_bytes": 17674963, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945595", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945595/zip", + "expired": false, + "created_at": "2024-08-10T14:26:30Z", + "updated_at": "2024-08-10T14:26:30Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797945719, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ1NzE5", + "name": "engine-dbgsyms-armv7-generic-debug_unopt", + "size_in_bytes": 104183323, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945719", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945719/zip", + "expired": false, + "created_at": "2024-08-10T14:26:39Z", + "updated_at": "2024-08-10T14:26:39Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797945734, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ1NzM0", + "name": "engine-dbgsyms-armv7-generic-debug_unopt-tar-xz", + "size_in_bytes": 61328359, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945734", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945734/zip", + "expired": false, + "created_at": "2024-08-10T14:26:41Z", + "updated_at": "2024-08-10T14:26:41Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797946176, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ2MTc2", + "name": "engine-x64-generic-debug", + "size_in_bytes": 16305721, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946176", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946176/zip", + "expired": false, + "created_at": "2024-08-10T14:27:12Z", + "updated_at": "2024-08-10T14:27:12Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797946191, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ2MTkx", + "name": "engine-x64-generic-debug-tar-xz", + "size_in_bytes": 11434978, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946191", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946191/zip", + "expired": false, + "created_at": "2024-08-10T14:27:13Z", + "updated_at": "2024-08-10T14:27:13Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797946317, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ2MzE3", + "name": "engine-dbgsyms-x64-generic-debug", + "size_in_bytes": 95733786, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946317", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946317/zip", + "expired": false, + "created_at": "2024-08-10T14:27:21Z", + "updated_at": "2024-08-10T14:27:21Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797946355, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ2MzU1", + "name": "engine-dbgsyms-x64-generic-debug-tar-xz", + "size_in_bytes": 58839763, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946355", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946355/zip", + "expired": false, + "created_at": "2024-08-10T14:27:24Z", + "updated_at": "2024-08-10T14:27:24Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797947632, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ3NjMy", + "name": "engine-armv7-generic-debug", + "size_in_bytes": 15713955, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947632", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947632/zip", + "expired": false, + "created_at": "2024-08-10T14:28:49Z", + "updated_at": "2024-08-10T14:28:49Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797947663, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ3NjYz", + "name": "engine-armv7-generic-debug-tar-xz", + "size_in_bytes": 10696129, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947663", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947663/zip", + "expired": false, + "created_at": "2024-08-10T14:28:50Z", + "updated_at": "2024-08-10T14:28:50Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797947870, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ3ODcw", + "name": "engine-dbgsyms-armv7-generic-debug", + "size_in_bytes": 96287911, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947870", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947870/zip", + "expired": false, + "created_at": "2024-08-10T14:28:59Z", + "updated_at": "2024-08-10T14:28:59Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797947943, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ3OTQz", + "name": "engine-dbgsyms-armv7-generic-debug-tar-xz", + "size_in_bytes": 59083354, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947943", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947943/zip", + "expired": false, + "created_at": "2024-08-10T14:29:01Z", + "updated_at": "2024-08-10T14:29:01Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948732, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4NzMy", + "name": "gen-snapshot-Linux-X64-x64-generic-release", + "size_in_bytes": 2627159, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948732", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948732/zip", + "expired": false, + "created_at": "2024-08-10T14:29:47Z", + "updated_at": "2024-08-10T14:29:47Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948741, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4NzQx", + "name": "gen-snapshot-Linux-X64-x64-generic-release-tar-xz", + "size_in_bytes": 1840417, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948741", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948741/zip", + "expired": false, + "created_at": "2024-08-10T14:29:47Z", + "updated_at": "2024-08-10T14:29:47Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948748, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4NzQ4", + "name": "gen-snapshot-Linux-ARM64-x64-generic-release", + "size_in_bytes": 2574111, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948748", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948748/zip", + "expired": false, + "created_at": "2024-08-10T14:29:48Z", + "updated_at": "2024-08-10T14:29:48Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948751, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4NzUx", + "name": "gen-snapshot-Linux-ARM64-x64-generic-release-tar-xz", + "size_in_bytes": 1642485, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948751", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948751/zip", + "expired": false, + "created_at": "2024-08-10T14:29:49Z", + "updated_at": "2024-08-10T14:29:49Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948770, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4Nzcw", + "name": "engine-x64-generic-release", + "size_in_bytes": 6944806, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948770", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948770/zip", + "expired": false, + "created_at": "2024-08-10T14:29:50Z", + "updated_at": "2024-08-10T14:29:50Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948789, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4Nzg5", + "name": "engine-x64-generic-release-tar-xz", + "size_in_bytes": 4949895, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948789", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948789/zip", + "expired": false, + "created_at": "2024-08-10T14:29:51Z", + "updated_at": "2024-08-10T14:29:51Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948809, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4ODA5", + "name": "engine-aarch64-generic-debug_unopt", + "size_in_bytes": 32810949, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948809", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948809/zip", + "expired": false, + "created_at": "2024-08-10T14:29:51Z", + "updated_at": "2024-08-10T14:29:51Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948850, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4ODUw", + "name": "engine-aarch64-generic-debug_unopt-tar-xz", + "size_in_bytes": 19528796, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948850", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948850/zip", + "expired": false, + "created_at": "2024-08-10T14:29:52Z", + "updated_at": "2024-08-10T14:29:52Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948888, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4ODg4", + "name": "engine-aarch64-generic-debug", + "size_in_bytes": 16346515, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948888", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948888/zip", + "expired": false, + "created_at": "2024-08-10T14:29:55Z", + "updated_at": "2024-08-10T14:29:55Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948909, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4OTA5", + "name": "engine-aarch64-generic-debug-tar-xz", + "size_in_bytes": 10944556, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948909", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948909/zip", + "expired": false, + "created_at": "2024-08-10T14:29:56Z", + "updated_at": "2024-08-10T14:29:56Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948948, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4OTQ4", + "name": "engine-dbgsyms-x64-generic-release", + "size_in_bytes": 85285783, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948948", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948948/zip", + "expired": false, + "created_at": "2024-08-10T14:29:58Z", + "updated_at": "2024-08-10T14:29:58Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948971, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4OTcx", + "name": "engine-dbgsyms-x64-generic-release-tar-xz", + "size_in_bytes": 52430592, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948971", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948971/zip", + "expired": false, + "created_at": "2024-08-10T14:30:00Z", + "updated_at": "2024-08-10T14:30:00Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948988, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4OTg4", + "name": "engine-dbgsyms-aarch64-generic-debug_unopt", + "size_in_bytes": 103388679, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948988", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948988/zip", + "expired": false, + "created_at": "2024-08-10T14:30:02Z", + "updated_at": "2024-08-10T14:30:02Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797949002, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ5MDAy", + "name": "engine-dbgsyms-aarch64-generic-debug", + "size_in_bytes": 95953475, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949002", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949002/zip", + "expired": false, + "created_at": "2024-08-10T14:30:04Z", + "updated_at": "2024-08-10T14:30:04Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797949005, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ5MDA1", + "name": "engine-dbgsyms-aarch64-generic-debug_unopt-tar-xz", + "size_in_bytes": 60766471, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949005", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949005/zip", + "expired": false, + "created_at": "2024-08-10T14:30:05Z", + "updated_at": "2024-08-10T14:30:05Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797949025, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ5MDI1", + "name": "engine-dbgsyms-aarch64-generic-debug-tar-xz", + "size_in_bytes": 58799148, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949025", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949025/zip", + "expired": false, + "created_at": "2024-08-10T14:30:07Z", + "updated_at": "2024-08-10T14:30:07Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797949967, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ5OTY3", + "name": "gen-snapshot-Linux-X64-aarch64-generic-release", + "size_in_bytes": 2748141, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949967", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949967/zip", + "expired": false, + "created_at": "2024-08-10T14:31:20Z", + "updated_at": "2024-08-10T14:31:20Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797949987, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ5OTg3", + "name": "gen-snapshot-Linux-X64-aarch64-generic-release-tar-xz", + "size_in_bytes": 1920182, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949987", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949987/zip", + "expired": false, + "created_at": "2024-08-10T14:31:21Z", + "updated_at": "2024-08-10T14:31:21Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950005, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMDA1", + "name": "gen-snapshot-Linux-ARM64-aarch64-generic-release", + "size_in_bytes": 2672623, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950005", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950005/zip", + "expired": false, + "created_at": "2024-08-10T14:31:22Z", + "updated_at": "2024-08-10T14:31:22Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950019, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMDE5", + "name": "gen-snapshot-Linux-ARM64-aarch64-generic-release-tar-xz", + "size_in_bytes": 1714077, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950019", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950019/zip", + "expired": false, + "created_at": "2024-08-10T14:31:23Z", + "updated_at": "2024-08-10T14:31:23Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950045, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMDQ1", + "name": "engine-aarch64-generic-release", + "size_in_bytes": 6939359, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950045", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950045/zip", + "expired": false, + "created_at": "2024-08-10T14:31:24Z", + "updated_at": "2024-08-10T14:31:24Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950062, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMDYy", + "name": "engine-aarch64-generic-release-tar-xz", + "size_in_bytes": 4531853, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950062", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950062/zip", + "expired": false, + "created_at": "2024-08-10T14:31:25Z", + "updated_at": "2024-08-10T14:31:25Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950188, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMTg4", + "name": "engine-dbgsyms-aarch64-generic-release", + "size_in_bytes": 85117235, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950188", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950188/zip", + "expired": false, + "created_at": "2024-08-10T14:31:33Z", + "updated_at": "2024-08-10T14:31:33Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950217, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMjE3", + "name": "gen-snapshot-Linux-X64-x64-generic-profile", + "size_in_bytes": 2890037, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950217", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950217/zip", + "expired": false, + "created_at": "2024-08-10T14:31:35Z", + "updated_at": "2024-08-10T14:31:35Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950218, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMjE4", + "name": "engine-dbgsyms-aarch64-generic-release-tar-xz", + "size_in_bytes": 52090715, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950218", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950218/zip", + "expired": false, + "created_at": "2024-08-10T14:31:35Z", + "updated_at": "2024-08-10T14:31:35Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950242, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMjQy", + "name": "gen-snapshot-Linux-X64-x64-generic-profile-tar-xz", + "size_in_bytes": 2037457, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950242", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950242/zip", + "expired": false, + "created_at": "2024-08-10T14:31:37Z", + "updated_at": "2024-08-10T14:31:37Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + } + ] +} +'''; + +const githubWorkflowRunArtifactsPage2 = ''' +{ + "total_count": 136, + "artifacts": [ + { + "id": 1797913057, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTEzMDU3", + "name": "universal", + "size_in_bytes": 4807995, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797913057", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797913057/zip", + "expired": false, + "created_at": "2024-08-10T13:50:19Z", + "updated_at": "2024-08-10T13:50:19Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797913069, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTEzMDY5", + "name": "universal-tar-xz", + "size_in_bytes": 3372460, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797913069", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797913069/zip", + "expired": false, + "created_at": "2024-08-10T13:50:19Z", + "updated_at": "2024-08-10T13:50:19Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920257, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwMjU3", + "name": "gen-snapshot-Windows-X64-armv7-generic-release", + "size_in_bytes": 2209187, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920257", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920257/zip", + "expired": false, + "created_at": "2024-08-10T13:59:21Z", + "updated_at": "2024-08-10T13:59:21Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920271, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwMjcx", + "name": "gen-snapshot-Windows-X64-armv7-generic-release-tar-xz", + "size_in_bytes": 1669246, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920271", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920271/zip", + "expired": false, + "created_at": "2024-08-10T13:59:23Z", + "updated_at": "2024-08-10T13:59:23Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920463, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwNDYz", + "name": "gen-snapshot-Windows-X64-aarch64-generic-profile", + "size_in_bytes": 2730465, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920463", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920463/zip", + "expired": false, + "created_at": "2024-08-10T13:59:40Z", + "updated_at": "2024-08-10T13:59:40Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920482, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwNDgy", + "name": "gen-snapshot-Windows-X64-aarch64-generic-profile-tar-xz", + "size_in_bytes": 2017800, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920482", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920482/zip", + "expired": false, + "created_at": "2024-08-10T13:59:42Z", + "updated_at": "2024-08-10T13:59:42Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920528, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwNTI4", + "name": "gen-snapshot-Windows-X64-aarch64-generic-release", + "size_in_bytes": 2462856, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920528", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920528/zip", + "expired": false, + "created_at": "2024-08-10T13:59:46Z", + "updated_at": "2024-08-10T13:59:46Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920543, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwNTQz", + "name": "gen-snapshot-Windows-X64-aarch64-generic-release-tar-xz", + "size_in_bytes": 1816863, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920543", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920543/zip", + "expired": false, + "created_at": "2024-08-10T13:59:48Z", + "updated_at": "2024-08-10T13:59:48Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920797, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwNzk3", + "name": "gen-snapshot-Windows-X64-x64-generic-profile", + "size_in_bytes": 2554863, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920797", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920797/zip", + "expired": false, + "created_at": "2024-08-10T14:00:11Z", + "updated_at": "2024-08-10T14:00:11Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920835, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwODM1", + "name": "gen-snapshot-Windows-X64-x64-generic-profile-tar-xz", + "size_in_bytes": 1919714, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920835", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920835/zip", + "expired": false, + "created_at": "2024-08-10T14:00:12Z", + "updated_at": "2024-08-10T14:00:12Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920896, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwODk2", + "name": "gen-snapshot-Windows-X64-x64-generic-release", + "size_in_bytes": 2283532, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920896", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920896/zip", + "expired": false, + "created_at": "2024-08-10T14:00:18Z", + "updated_at": "2024-08-10T14:00:18Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797920901, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIwOTAx", + "name": "gen-snapshot-Windows-X64-x64-generic-release-tar-xz", + "size_in_bytes": 1712417, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920901", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797920901/zip", + "expired": false, + "created_at": "2024-08-10T14:00:18Z", + "updated_at": "2024-08-10T14:00:18Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797921458, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIxNDU4", + "name": "gen-snapshot-Windows-X64-armv7-generic-profile", + "size_in_bytes": 2464710, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797921458", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797921458/zip", + "expired": false, + "created_at": "2024-08-10T14:00:51Z", + "updated_at": "2024-08-10T14:00:51Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797921479, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIxNDc5", + "name": "gen-snapshot-Windows-X64-armv7-generic-profile-tar-xz", + "size_in_bytes": 1863122, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797921479", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797921479/zip", + "expired": false, + "created_at": "2024-08-10T14:00:52Z", + "updated_at": "2024-08-10T14:00:52Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797922374, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIyMzc0", + "name": "gen-snapshot-macOS-X64-armv7-generic-release", + "size_in_bytes": 2850918, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797922374", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797922374/zip", + "expired": false, + "created_at": "2024-08-10T14:01:54Z", + "updated_at": "2024-08-10T14:01:54Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797922394, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIyMzk0", + "name": "gen-snapshot-macOS-X64-armv7-generic-release-tar-xz", + "size_in_bytes": 1990586, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797922394", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797922394/zip", + "expired": false, + "created_at": "2024-08-10T14:01:55Z", + "updated_at": "2024-08-10T14:01:55Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797923257, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIzMjU3", + "name": "gen-snapshot-macOS-X64-x64-generic-release", + "size_in_bytes": 3015450, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923257", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923257/zip", + "expired": false, + "created_at": "2024-08-10T14:02:49Z", + "updated_at": "2024-08-10T14:02:49Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797923305, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIzMzA1", + "name": "gen-snapshot-macOS-X64-x64-generic-release-tar-xz", + "size_in_bytes": 2076523, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923305", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923305/zip", + "expired": false, + "created_at": "2024-08-10T14:02:51Z", + "updated_at": "2024-08-10T14:02:51Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797923390, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIzMzkw", + "name": "gen-snapshot-macOS-X64-aarch64-generic-profile", + "size_in_bytes": 3536123, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923390", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923390/zip", + "expired": false, + "created_at": "2024-08-10T14:02:55Z", + "updated_at": "2024-08-10T14:02:55Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797923419, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIzNDE5", + "name": "gen-snapshot-macOS-X64-aarch64-generic-profile-tar-xz", + "size_in_bytes": 2429697, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923419", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923419/zip", + "expired": false, + "created_at": "2024-08-10T14:02:57Z", + "updated_at": "2024-08-10T14:02:57Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797923736, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIzNzM2", + "name": "gen-snapshot-macOS-X64-aarch64-generic-release", + "size_in_bytes": 3086485, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923736", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923736/zip", + "expired": false, + "created_at": "2024-08-10T14:03:16Z", + "updated_at": "2024-08-10T14:03:16Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797923762, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTIzNzYy", + "name": "gen-snapshot-macOS-X64-aarch64-generic-release-tar-xz", + "size_in_bytes": 2126006, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923762", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797923762/zip", + "expired": false, + "created_at": "2024-08-10T14:03:18Z", + "updated_at": "2024-08-10T14:03:18Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797925546, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTI1NTQ2", + "name": "gen-snapshot-macOS-X64-armv7-generic-profile", + "size_in_bytes": 3299693, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797925546", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797925546/zip", + "expired": false, + "created_at": "2024-08-10T14:05:13Z", + "updated_at": "2024-08-10T14:05:13Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797925566, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTI1NTY2", + "name": "gen-snapshot-macOS-X64-armv7-generic-profile-tar-xz", + "size_in_bytes": 2293132, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797925566", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797925566/zip", + "expired": false, + "created_at": "2024-08-10T14:05:13Z", + "updated_at": "2024-08-10T14:05:13Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797938592, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTM4NTky", + "name": "gen-snapshot-macOS-X64-x64-generic-profile", + "size_in_bytes": 3458952, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797938592", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797938592/zip", + "expired": false, + "created_at": "2024-08-10T14:18:15Z", + "updated_at": "2024-08-10T14:18:15Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797938617, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTM4NjE3", + "name": "gen-snapshot-macOS-X64-x64-generic-profile-tar-xz", + "size_in_bytes": 2378998, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797938617", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797938617/zip", + "expired": false, + "created_at": "2024-08-10T14:18:16Z", + "updated_at": "2024-08-10T14:18:16Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941151, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxMTUx", + "name": "engine-pi4-release", + "size_in_bytes": 6408862, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941151", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941151/zip", + "expired": false, + "created_at": "2024-08-10T14:21:36Z", + "updated_at": "2024-08-10T14:21:36Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941168, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxMTY4", + "name": "engine-pi4-release-tar-xz", + "size_in_bytes": 4284102, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941168", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941168/zip", + "expired": false, + "created_at": "2024-08-10T14:21:37Z", + "updated_at": "2024-08-10T14:21:37Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941273, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxMjcz", + "name": "engine-dbgsyms-pi4-release", + "size_in_bytes": 84967154, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941273", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941273/zip", + "expired": false, + "created_at": "2024-08-10T14:21:44Z", + "updated_at": "2024-08-10T14:21:44Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941306, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxMzA2", + "name": "engine-dbgsyms-pi4-release-tar-xz", + "size_in_bytes": 52164355, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941306", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941306/zip", + "expired": false, + "created_at": "2024-08-10T14:21:46Z", + "updated_at": "2024-08-10T14:21:46Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941619, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxNjE5", + "name": "engine-pi3-profile", + "size_in_bytes": 7728878, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941619", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941619/zip", + "expired": false, + "created_at": "2024-08-10T14:22:05Z", + "updated_at": "2024-08-10T14:22:05Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941632, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxNjMy", + "name": "engine-pi3-profile-tar-xz", + "size_in_bytes": 5309900, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941632", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941632/zip", + "expired": false, + "created_at": "2024-08-10T14:22:06Z", + "updated_at": "2024-08-10T14:22:06Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941727, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxNzI3", + "name": "engine-pi3-release", + "size_in_bytes": 6375458, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941727", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941727/zip", + "expired": false, + "created_at": "2024-08-10T14:22:11Z", + "updated_at": "2024-08-10T14:22:11Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941737, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxNzM3", + "name": "engine-pi3-release-tar-xz", + "size_in_bytes": 4268073, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941737", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941737/zip", + "expired": false, + "created_at": "2024-08-10T14:22:12Z", + "updated_at": "2024-08-10T14:22:12Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941761, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxNzYx", + "name": "engine-dbgsyms-pi3-profile", + "size_in_bytes": 87295052, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941761", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941761/zip", + "expired": false, + "created_at": "2024-08-10T14:22:13Z", + "updated_at": "2024-08-10T14:22:13Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941794, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxNzk0", + "name": "engine-dbgsyms-pi3-profile-tar-xz", + "size_in_bytes": 53616884, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941794", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941794/zip", + "expired": false, + "created_at": "2024-08-10T14:22:16Z", + "updated_at": "2024-08-10T14:22:16Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941858, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxODU4", + "name": "engine-dbgsyms-pi3-release", + "size_in_bytes": 84863600, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941858", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941858/zip", + "expired": false, + "created_at": "2024-08-10T14:22:19Z", + "updated_at": "2024-08-10T14:22:19Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797941887, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQxODg3", + "name": "engine-dbgsyms-pi3-release-tar-xz", + "size_in_bytes": 52108936, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941887", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797941887/zip", + "expired": false, + "created_at": "2024-08-10T14:22:21Z", + "updated_at": "2024-08-10T14:22:21Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942605, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNjA1", + "name": "engine-pi4-64-release", + "size_in_bytes": 6925417, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942605", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942605/zip", + "expired": false, + "created_at": "2024-08-10T14:23:10Z", + "updated_at": "2024-08-10T14:23:10Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942622, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNjIy", + "name": "engine-pi4-64-release-tar-xz", + "size_in_bytes": 4481276, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942622", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942622/zip", + "expired": false, + "created_at": "2024-08-10T14:23:12Z", + "updated_at": "2024-08-10T14:23:12Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942662, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNjYy", + "name": "engine-pi3-64-release", + "size_in_bytes": 7253002, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942662", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942662/zip", + "expired": false, + "created_at": "2024-08-10T14:23:14Z", + "updated_at": "2024-08-10T14:23:14Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942676, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNjc2", + "name": "engine-pi3-64-release-tar-xz", + "size_in_bytes": 4724763, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942676", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942676/zip", + "expired": false, + "created_at": "2024-08-10T14:23:15Z", + "updated_at": "2024-08-10T14:23:15Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942741, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNzQx", + "name": "engine-dbgsyms-pi4-64-release", + "size_in_bytes": 83461984, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942741", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942741/zip", + "expired": false, + "created_at": "2024-08-10T14:23:19Z", + "updated_at": "2024-08-10T14:23:19Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942786, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNzg2", + "name": "engine-dbgsyms-pi3-64-release", + "size_in_bytes": 85926783, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942786", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942786/zip", + "expired": false, + "created_at": "2024-08-10T14:23:22Z", + "updated_at": "2024-08-10T14:23:22Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942792, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyNzky", + "name": "engine-dbgsyms-pi4-64-release-tar-xz", + "size_in_bytes": 50900520, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942792", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942792/zip", + "expired": false, + "created_at": "2024-08-10T14:23:23Z", + "updated_at": "2024-08-10T14:23:23Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797942833, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQyODMz", + "name": "engine-dbgsyms-pi3-64-release-tar-xz", + "size_in_bytes": 52549633, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942833", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797942833/zip", + "expired": false, + "created_at": "2024-08-10T14:23:24Z", + "updated_at": "2024-08-10T14:23:24Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943104, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMTA0", + "name": "engine-pi4-64-profile", + "size_in_bytes": 8297651, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943104", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943104/zip", + "expired": false, + "created_at": "2024-08-10T14:23:42Z", + "updated_at": "2024-08-10T14:23:42Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943120, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMTIw", + "name": "engine-pi4-64-profile-tar-xz", + "size_in_bytes": 5521383, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943120", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943120/zip", + "expired": false, + "created_at": "2024-08-10T14:23:44Z", + "updated_at": "2024-08-10T14:23:44Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943152, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMTUy", + "name": "engine-pi4-profile", + "size_in_bytes": 7764476, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943152", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943152/zip", + "expired": false, + "created_at": "2024-08-10T14:23:46Z", + "updated_at": "2024-08-10T14:23:46Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943160, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMTYw", + "name": "engine-pi4-profile-tar-xz", + "size_in_bytes": 5325653, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943160", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943160/zip", + "expired": false, + "created_at": "2024-08-10T14:23:47Z", + "updated_at": "2024-08-10T14:23:47Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943243, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMjQz", + "name": "engine-dbgsyms-pi4-64-profile", + "size_in_bytes": 85765959, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943243", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943243/zip", + "expired": false, + "created_at": "2024-08-10T14:23:52Z", + "updated_at": "2024-08-10T14:23:52Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943269, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMjY5", + "name": "engine-dbgsyms-pi4-profile", + "size_in_bytes": 87387127, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943269", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943269/zip", + "expired": false, + "created_at": "2024-08-10T14:23:54Z", + "updated_at": "2024-08-10T14:23:54Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943287, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMjg3", + "name": "engine-dbgsyms-pi4-64-profile-tar-xz", + "size_in_bytes": 52457971, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943287", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943287/zip", + "expired": false, + "created_at": "2024-08-10T14:23:55Z", + "updated_at": "2024-08-10T14:23:55Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943311, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzMzEx", + "name": "engine-dbgsyms-pi4-profile-tar-xz", + "size_in_bytes": 53679672, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943311", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943311/zip", + "expired": false, + "created_at": "2024-08-10T14:23:56Z", + "updated_at": "2024-08-10T14:23:56Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943708, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzNzA4", + "name": "engine-pi3-64-profile", + "size_in_bytes": 8639034, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943708", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943708/zip", + "expired": false, + "created_at": "2024-08-10T14:24:24Z", + "updated_at": "2024-08-10T14:24:24Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943730, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzNzMw", + "name": "engine-pi3-64-profile-tar-xz", + "size_in_bytes": 5783539, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943730", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943730/zip", + "expired": false, + "created_at": "2024-08-10T14:24:26Z", + "updated_at": "2024-08-10T14:24:26Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943850, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzODUw", + "name": "engine-dbgsyms-pi3-64-profile", + "size_in_bytes": 88295771, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943850", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943850/zip", + "expired": false, + "created_at": "2024-08-10T14:24:34Z", + "updated_at": "2024-08-10T14:24:34Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797943895, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQzODk1", + "name": "engine-dbgsyms-pi3-64-profile-tar-xz", + "size_in_bytes": 54038828, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943895", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797943895/zip", + "expired": false, + "created_at": "2024-08-10T14:24:37Z", + "updated_at": "2024-08-10T14:24:37Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797944337, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ0MzM3", + "name": "engine-x64-generic-debug_unopt", + "size_in_bytes": 31616034, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944337", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944337/zip", + "expired": false, + "created_at": "2024-08-10T14:25:03Z", + "updated_at": "2024-08-10T14:25:03Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797944364, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ0MzY0", + "name": "engine-x64-generic-debug_unopt-tar-xz", + "size_in_bytes": 19722328, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944364", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944364/zip", + "expired": false, + "created_at": "2024-08-10T14:25:05Z", + "updated_at": "2024-08-10T14:25:05Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797944507, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ0NTA3", + "name": "engine-dbgsyms-x64-generic-debug_unopt", + "size_in_bytes": 102466911, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944507", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944507/zip", + "expired": false, + "created_at": "2024-08-10T14:25:15Z", + "updated_at": "2024-08-10T14:25:15Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797944553, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ0NTUz", + "name": "engine-dbgsyms-x64-generic-debug_unopt-tar-xz", + "size_in_bytes": 60273354, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944553", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797944553/zip", + "expired": false, + "created_at": "2024-08-10T14:25:18Z", + "updated_at": "2024-08-10T14:25:18Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797945550, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ1NTUw", + "name": "engine-armv7-generic-debug_unopt", + "size_in_bytes": 28733988, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945550", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945550/zip", + "expired": false, + "created_at": "2024-08-10T14:26:28Z", + "updated_at": "2024-08-10T14:26:28Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797945595, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ1NTk1", + "name": "engine-armv7-generic-debug_unopt-tar-xz", + "size_in_bytes": 17674963, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945595", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945595/zip", + "expired": false, + "created_at": "2024-08-10T14:26:30Z", + "updated_at": "2024-08-10T14:26:30Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797945719, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ1NzE5", + "name": "engine-dbgsyms-armv7-generic-debug_unopt", + "size_in_bytes": 104183323, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945719", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945719/zip", + "expired": false, + "created_at": "2024-08-10T14:26:39Z", + "updated_at": "2024-08-10T14:26:39Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797945734, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ1NzM0", + "name": "engine-dbgsyms-armv7-generic-debug_unopt-tar-xz", + "size_in_bytes": 61328359, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945734", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797945734/zip", + "expired": false, + "created_at": "2024-08-10T14:26:41Z", + "updated_at": "2024-08-10T14:26:41Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797946176, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ2MTc2", + "name": "engine-x64-generic-debug", + "size_in_bytes": 16305721, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946176", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946176/zip", + "expired": false, + "created_at": "2024-08-10T14:27:12Z", + "updated_at": "2024-08-10T14:27:12Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797946191, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ2MTkx", + "name": "engine-x64-generic-debug-tar-xz", + "size_in_bytes": 11434978, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946191", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946191/zip", + "expired": false, + "created_at": "2024-08-10T14:27:13Z", + "updated_at": "2024-08-10T14:27:13Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797946317, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ2MzE3", + "name": "engine-dbgsyms-x64-generic-debug", + "size_in_bytes": 95733786, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946317", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946317/zip", + "expired": false, + "created_at": "2024-08-10T14:27:21Z", + "updated_at": "2024-08-10T14:27:21Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797946355, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ2MzU1", + "name": "engine-dbgsyms-x64-generic-debug-tar-xz", + "size_in_bytes": 58839763, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946355", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797946355/zip", + "expired": false, + "created_at": "2024-08-10T14:27:24Z", + "updated_at": "2024-08-10T14:27:24Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797947632, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ3NjMy", + "name": "engine-armv7-generic-debug", + "size_in_bytes": 15713955, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947632", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947632/zip", + "expired": false, + "created_at": "2024-08-10T14:28:49Z", + "updated_at": "2024-08-10T14:28:49Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797947663, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ3NjYz", + "name": "engine-armv7-generic-debug-tar-xz", + "size_in_bytes": 10696129, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947663", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947663/zip", + "expired": false, + "created_at": "2024-08-10T14:28:50Z", + "updated_at": "2024-08-10T14:28:50Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797947870, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ3ODcw", + "name": "engine-dbgsyms-armv7-generic-debug", + "size_in_bytes": 96287911, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947870", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947870/zip", + "expired": false, + "created_at": "2024-08-10T14:28:59Z", + "updated_at": "2024-08-10T14:28:59Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797947943, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ3OTQz", + "name": "engine-dbgsyms-armv7-generic-debug-tar-xz", + "size_in_bytes": 59083354, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947943", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797947943/zip", + "expired": false, + "created_at": "2024-08-10T14:29:01Z", + "updated_at": "2024-08-10T14:29:01Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948732, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4NzMy", + "name": "gen-snapshot-Linux-X64-x64-generic-release", + "size_in_bytes": 2627159, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948732", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948732/zip", + "expired": false, + "created_at": "2024-08-10T14:29:47Z", + "updated_at": "2024-08-10T14:29:47Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948741, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4NzQx", + "name": "gen-snapshot-Linux-X64-x64-generic-release-tar-xz", + "size_in_bytes": 1840417, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948741", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948741/zip", + "expired": false, + "created_at": "2024-08-10T14:29:47Z", + "updated_at": "2024-08-10T14:29:47Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948748, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4NzQ4", + "name": "gen-snapshot-Linux-ARM64-x64-generic-release", + "size_in_bytes": 2574111, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948748", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948748/zip", + "expired": false, + "created_at": "2024-08-10T14:29:48Z", + "updated_at": "2024-08-10T14:29:48Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948751, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4NzUx", + "name": "gen-snapshot-Linux-ARM64-x64-generic-release-tar-xz", + "size_in_bytes": 1642485, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948751", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948751/zip", + "expired": false, + "created_at": "2024-08-10T14:29:49Z", + "updated_at": "2024-08-10T14:29:49Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948770, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4Nzcw", + "name": "engine-x64-generic-release", + "size_in_bytes": 6944806, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948770", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948770/zip", + "expired": false, + "created_at": "2024-08-10T14:29:50Z", + "updated_at": "2024-08-10T14:29:50Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948789, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4Nzg5", + "name": "engine-x64-generic-release-tar-xz", + "size_in_bytes": 4949895, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948789", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948789/zip", + "expired": false, + "created_at": "2024-08-10T14:29:51Z", + "updated_at": "2024-08-10T14:29:51Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948809, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4ODA5", + "name": "engine-aarch64-generic-debug_unopt", + "size_in_bytes": 32810949, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948809", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948809/zip", + "expired": false, + "created_at": "2024-08-10T14:29:51Z", + "updated_at": "2024-08-10T14:29:51Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948850, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4ODUw", + "name": "engine-aarch64-generic-debug_unopt-tar-xz", + "size_in_bytes": 19528796, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948850", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948850/zip", + "expired": false, + "created_at": "2024-08-10T14:29:52Z", + "updated_at": "2024-08-10T14:29:52Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948888, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4ODg4", + "name": "engine-aarch64-generic-debug", + "size_in_bytes": 16346515, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948888", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948888/zip", + "expired": false, + "created_at": "2024-08-10T14:29:55Z", + "updated_at": "2024-08-10T14:29:55Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948909, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4OTA5", + "name": "engine-aarch64-generic-debug-tar-xz", + "size_in_bytes": 10944556, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948909", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948909/zip", + "expired": false, + "created_at": "2024-08-10T14:29:56Z", + "updated_at": "2024-08-10T14:29:56Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948948, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4OTQ4", + "name": "engine-dbgsyms-x64-generic-release", + "size_in_bytes": 85285783, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948948", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948948/zip", + "expired": false, + "created_at": "2024-08-10T14:29:58Z", + "updated_at": "2024-08-10T14:29:58Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948971, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4OTcx", + "name": "engine-dbgsyms-x64-generic-release-tar-xz", + "size_in_bytes": 52430592, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948971", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948971/zip", + "expired": false, + "created_at": "2024-08-10T14:30:00Z", + "updated_at": "2024-08-10T14:30:00Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797948988, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ4OTg4", + "name": "engine-dbgsyms-aarch64-generic-debug_unopt", + "size_in_bytes": 103388679, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948988", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797948988/zip", + "expired": false, + "created_at": "2024-08-10T14:30:02Z", + "updated_at": "2024-08-10T14:30:02Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797949002, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ5MDAy", + "name": "engine-dbgsyms-aarch64-generic-debug", + "size_in_bytes": 95953475, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949002", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949002/zip", + "expired": false, + "created_at": "2024-08-10T14:30:04Z", + "updated_at": "2024-08-10T14:30:04Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797949005, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ5MDA1", + "name": "engine-dbgsyms-aarch64-generic-debug_unopt-tar-xz", + "size_in_bytes": 60766471, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949005", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949005/zip", + "expired": false, + "created_at": "2024-08-10T14:30:05Z", + "updated_at": "2024-08-10T14:30:05Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797949025, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ5MDI1", + "name": "engine-dbgsyms-aarch64-generic-debug-tar-xz", + "size_in_bytes": 58799148, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949025", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949025/zip", + "expired": false, + "created_at": "2024-08-10T14:30:07Z", + "updated_at": "2024-08-10T14:30:07Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797949967, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ5OTY3", + "name": "gen-snapshot-Linux-X64-aarch64-generic-release", + "size_in_bytes": 2748141, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949967", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949967/zip", + "expired": false, + "created_at": "2024-08-10T14:31:20Z", + "updated_at": "2024-08-10T14:31:20Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797949987, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTQ5OTg3", + "name": "gen-snapshot-Linux-X64-aarch64-generic-release-tar-xz", + "size_in_bytes": 1920182, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949987", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797949987/zip", + "expired": false, + "created_at": "2024-08-10T14:31:21Z", + "updated_at": "2024-08-10T14:31:21Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950005, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMDA1", + "name": "gen-snapshot-Linux-ARM64-aarch64-generic-release", + "size_in_bytes": 2672623, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950005", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950005/zip", + "expired": false, + "created_at": "2024-08-10T14:31:22Z", + "updated_at": "2024-08-10T14:31:22Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950019, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMDE5", + "name": "gen-snapshot-Linux-ARM64-aarch64-generic-release-tar-xz", + "size_in_bytes": 1714077, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950019", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950019/zip", + "expired": false, + "created_at": "2024-08-10T14:31:23Z", + "updated_at": "2024-08-10T14:31:23Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950045, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMDQ1", + "name": "engine-aarch64-generic-release", + "size_in_bytes": 6939359, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950045", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950045/zip", + "expired": false, + "created_at": "2024-08-10T14:31:24Z", + "updated_at": "2024-08-10T14:31:24Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950062, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMDYy", + "name": "engine-aarch64-generic-release-tar-xz", + "size_in_bytes": 4531853, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950062", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950062/zip", + "expired": false, + "created_at": "2024-08-10T14:31:25Z", + "updated_at": "2024-08-10T14:31:25Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950188, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMTg4", + "name": "engine-dbgsyms-aarch64-generic-release", + "size_in_bytes": 85117235, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950188", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950188/zip", + "expired": false, + "created_at": "2024-08-10T14:31:33Z", + "updated_at": "2024-08-10T14:31:33Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950217, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMjE3", + "name": "gen-snapshot-Linux-X64-x64-generic-profile", + "size_in_bytes": 2890037, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950217", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950217/zip", + "expired": false, + "created_at": "2024-08-10T14:31:35Z", + "updated_at": "2024-08-10T14:31:35Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950218, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMjE4", + "name": "engine-dbgsyms-aarch64-generic-release-tar-xz", + "size_in_bytes": 52090715, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950218", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950218/zip", + "expired": false, + "created_at": "2024-08-10T14:31:35Z", + "updated_at": "2024-08-10T14:31:35Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + }, + { + "id": 1797950242, + "node_id": "MDg6QXJ0aWZhY3QxNzk3OTUwMjQy", + "name": "gen-snapshot-Linux-X64-x64-generic-profile-tar-xz", + "size_in_bytes": 2037457, + "url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950242", + "archive_download_url": "https://api.github.com/repos/ardera/flutter-ci/actions/artifacts/1797950242/zip", + "expired": false, + "created_at": "2024-08-10T14:31:37Z", + "updated_at": "2024-08-10T14:31:37Z", + "expires_at": "2024-10-09T13:48:38Z", + "workflow_run": { + "id": 10332084071, + "repository_id": 455288947, + "head_repository_id": 455288947, + "head_branch": "engine/b8800d88be4866db1b15f8b954ab2573bba9960f", + "head_sha": "b2c5168dd49a92d5d19860a563c3c14fee088914" + } + } + ] +} +''';