cloudsnorkel.cdk-github-runners 0.13.3__py3-none-any.whl → 0.13.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cloudsnorkel.cdk-github-runners might be problematic. Click here for more details.
- cloudsnorkel/cdk_github_runners/__init__.py +34 -20
- cloudsnorkel/cdk_github_runners/_jsii/__init__.py +2 -2
- cloudsnorkel/cdk_github_runners/_jsii/cdk-github-runners@0.13.4.jsii.tgz +0 -0
- {cloudsnorkel.cdk_github_runners-0.13.3.dist-info → cloudsnorkel.cdk_github_runners-0.13.4.dist-info}/METADATA +20 -6
- cloudsnorkel.cdk_github_runners-0.13.4.dist-info/RECORD +9 -0
- cloudsnorkel/cdk_github_runners/_jsii/cdk-github-runners@0.13.3.jsii.tgz +0 -0
- cloudsnorkel.cdk_github_runners-0.13.3.dist-info/RECORD +0 -9
- {cloudsnorkel.cdk_github_runners-0.13.3.dist-info → cloudsnorkel.cdk_github_runners-0.13.4.dist-info}/LICENSE +0 -0
- {cloudsnorkel.cdk_github_runners-0.13.3.dist-info → cloudsnorkel.cdk_github_runners-0.13.4.dist-info}/WHEEL +0 -0
- {cloudsnorkel.cdk_github_runners-0.13.3.dist-info → cloudsnorkel.cdk_github_runners-0.13.4.dist-info}/top_level.txt +0 -0
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
|
|
12
12
|
Use this CDK construct to create ephemeral [self-hosted GitHub runners](https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners) on-demand inside your AWS account.
|
|
13
13
|
|
|
14
|
-
* Easy to configure GitHub integration with a web-based interface
|
|
15
|
-
* Customizable runners with decent defaults
|
|
16
|
-
* Multiple runner configurations controlled by labels
|
|
17
|
-
* Everything fully hosted in your account
|
|
18
|
-
* Automatically updated build environment with latest runner version
|
|
14
|
+
* 🧩 Easy to configure GitHub integration with a web-based interface
|
|
15
|
+
* 🧠 Customizable runners with decent defaults
|
|
16
|
+
* 🏃🏻 Multiple runner configurations controlled by labels
|
|
17
|
+
* 🔐 Everything fully hosted in your account
|
|
18
|
+
* 🔃 Automatically updated build environment with latest runner version
|
|
19
19
|
|
|
20
20
|
Self-hosted runners in AWS are useful when:
|
|
21
21
|
|
|
@@ -323,6 +323,20 @@ Other useful metrics to track:
|
|
|
323
323
|
1. Use `GitHubRunners.metricJobCompleted()` to get a metric for the number of completed jobs broken down by labels and job success.
|
|
324
324
|
2. Use `GitHubRunners.metricTime()` to get a metric for the total time a runner is running. This includes the overhead of starting the runner.
|
|
325
325
|
|
|
326
|
+
## Contributing
|
|
327
|
+
|
|
328
|
+
If you use and love this project, please consider contributing.
|
|
329
|
+
|
|
330
|
+
1. 🪳 If you see something, say something. [Issues](https://github.com/CloudSnorkel/cdk-github-runners/issues) help improve the quality of the project.
|
|
331
|
+
|
|
332
|
+
* Include relevant logs and package versions for bugs.
|
|
333
|
+
* When possible, describe the use-case behind feature requests.
|
|
334
|
+
2. 🛠️ [Pull requests](https://github.com/CloudSnorkel/cdk-github-runners/pulls) are welcome.
|
|
335
|
+
|
|
336
|
+
* Run `npm run build` before submitting to make sure all tests pass.
|
|
337
|
+
* Allow edits from maintainers so small adjustments can be made easily.
|
|
338
|
+
3. 💵 Consider [sponsoring](https://github.com/sponsors/CloudSnorkel) the project to show your support and optionally get your name listed below.
|
|
339
|
+
|
|
326
340
|
## Other Options
|
|
327
341
|
|
|
328
342
|
1. [philips-labs/terraform-aws-github-runner](https://github.com/philips-labs/terraform-aws-github-runner) if you're using Terraform
|
|
@@ -401,7 +415,7 @@ class AmiBuilderProps:
|
|
|
401
415
|
|
|
402
416
|
:param architecture: (experimental) Image architecture. Default: Architecture.X86_64
|
|
403
417
|
:param install_docker: (experimental) Install Docker inside the image, so it can be used by the runner. Default: true
|
|
404
|
-
:param instance_type: (experimental) The instance type used to build the image. Default:
|
|
418
|
+
:param instance_type: (experimental) The instance type used to build the image. Default: m6i.large
|
|
405
419
|
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way the logs can still be viewed, and you can see why the build failed. We try to not leave anything behind when removed. But sometimes a log staying behind is useful. Default: RemovalPolicy.DESTROY
|
|
406
420
|
:param log_retention: (experimental) The number of days log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to ``INFINITE``. Default: logs.RetentionDays.ONE_MONTH
|
|
407
421
|
:param os: (experimental) Image OS. Default: OS.LINUX
|
|
@@ -482,7 +496,7 @@ class AmiBuilderProps:
|
|
|
482
496
|
def instance_type(self) -> typing.Optional[_aws_cdk_aws_ec2_ceddda9d.InstanceType]:
|
|
483
497
|
'''(experimental) The instance type used to build the image.
|
|
484
498
|
|
|
485
|
-
:default:
|
|
499
|
+
:default: m6i.large
|
|
486
500
|
|
|
487
501
|
:stability: experimental
|
|
488
502
|
'''
|
|
@@ -826,7 +840,7 @@ class AwsImageBuilderRunnerImageBuilderProps:
|
|
|
826
840
|
) -> None:
|
|
827
841
|
'''
|
|
828
842
|
:param fast_launch_options: (experimental) Options for fast launch. This is only supported for Windows AMIs. Default: disabled
|
|
829
|
-
:param instance_type: (experimental) The instance type used to build the image. Default:
|
|
843
|
+
:param instance_type: (experimental) The instance type used to build the image. Default: m6i.large
|
|
830
844
|
|
|
831
845
|
:stability: experimental
|
|
832
846
|
'''
|
|
@@ -859,7 +873,7 @@ class AwsImageBuilderRunnerImageBuilderProps:
|
|
|
859
873
|
def instance_type(self) -> typing.Optional[_aws_cdk_aws_ec2_ceddda9d.InstanceType]:
|
|
860
874
|
'''(experimental) The instance type used to build the image.
|
|
861
875
|
|
|
862
|
-
:default:
|
|
876
|
+
:default: m6i.large
|
|
863
877
|
|
|
864
878
|
:stability: experimental
|
|
865
879
|
'''
|
|
@@ -1298,7 +1312,7 @@ class ContainerImageBuilderProps:
|
|
|
1298
1312
|
'''(experimental) Properties for ContainerImageBuilder construct.
|
|
1299
1313
|
|
|
1300
1314
|
:param architecture: (experimental) Image architecture. Default: Architecture.X86_64
|
|
1301
|
-
:param instance_type: (experimental) The instance type used to build the image. Default:
|
|
1315
|
+
:param instance_type: (experimental) The instance type used to build the image. Default: m6i.large
|
|
1302
1316
|
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way the CodeBuild logs can still be viewed, and you can see why the build failed. We try to not leave anything behind when removed. But sometimes a log staying behind is useful. Default: RemovalPolicy.DESTROY
|
|
1303
1317
|
:param log_retention: (experimental) The number of days log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to ``INFINITE``. Default: logs.RetentionDays.ONE_MONTH
|
|
1304
1318
|
:param os: (experimental) Image OS. Default: OS.LINUX
|
|
@@ -1369,7 +1383,7 @@ class ContainerImageBuilderProps:
|
|
|
1369
1383
|
def instance_type(self) -> typing.Optional[_aws_cdk_aws_ec2_ceddda9d.InstanceType]:
|
|
1370
1384
|
'''(experimental) The instance type used to build the image.
|
|
1371
1385
|
|
|
1372
|
-
:default:
|
|
1386
|
+
:default: m6i.large
|
|
1373
1387
|
|
|
1374
1388
|
:stability: experimental
|
|
1375
1389
|
'''
|
|
@@ -5947,7 +5961,7 @@ class AmiBuilder(
|
|
|
5947
5961
|
:param id: -
|
|
5948
5962
|
:param architecture: (experimental) Image architecture. Default: Architecture.X86_64
|
|
5949
5963
|
:param install_docker: (experimental) Install Docker inside the image, so it can be used by the runner. Default: true
|
|
5950
|
-
:param instance_type: (experimental) The instance type used to build the image. Default:
|
|
5964
|
+
:param instance_type: (experimental) The instance type used to build the image. Default: m6i.large
|
|
5951
5965
|
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way the logs can still be viewed, and you can see why the build failed. We try to not leave anything behind when removed. But sometimes a log staying behind is useful. Default: RemovalPolicy.DESTROY
|
|
5952
5966
|
:param log_retention: (experimental) The number of days log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to ``INFINITE``. Default: logs.RetentionDays.ONE_MONTH
|
|
5953
5967
|
:param os: (experimental) Image OS. Default: OS.LINUX
|
|
@@ -7104,7 +7118,7 @@ class ContainerImageBuilder(
|
|
|
7104
7118
|
:param scope: -
|
|
7105
7119
|
:param id: -
|
|
7106
7120
|
:param architecture: (experimental) Image architecture. Default: Architecture.X86_64
|
|
7107
|
-
:param instance_type: (experimental) The instance type used to build the image. Default:
|
|
7121
|
+
:param instance_type: (experimental) The instance type used to build the image. Default: m6i.large
|
|
7108
7122
|
:param log_removal_policy: (experimental) Removal policy for logs of image builds. If deployment fails on the custom resource, try setting this to ``RemovalPolicy.RETAIN``. This way the CodeBuild logs can still be viewed, and you can see why the build failed. We try to not leave anything behind when removed. But sometimes a log staying behind is useful. Default: RemovalPolicy.DESTROY
|
|
7109
7123
|
:param log_retention: (experimental) The number of days log events are kept in CloudWatch Logs. When updating this property, unsetting it doesn't remove the log retention policy. To remove the retention policy, set the value to ``INFINITE``. Default: logs.RetentionDays.ONE_MONTH
|
|
7110
7124
|
:param os: (experimental) Image OS. Default: OS.LINUX
|
|
@@ -7397,7 +7411,7 @@ class Ec2RunnerProvider(
|
|
|
7397
7411
|
:param id: -
|
|
7398
7412
|
:param ami_builder:
|
|
7399
7413
|
:param image_builder: (experimental) Runner image builder used to build AMI containing GitHub Runner and all requirements. The image builder determines the OS and architecture of the runner. Default: Ec2RunnerProvider.imageBuilder()
|
|
7400
|
-
:param instance_type: (experimental) Instance type for launched runner instances. Default:
|
|
7414
|
+
:param instance_type: (experimental) Instance type for launched runner instances. Default: m6i.large
|
|
7401
7415
|
:param labels: (experimental) GitHub Actions labels used for this provider. These labels are used to identify which provider should spawn a new on-demand runner. Every job sends a webhook with the labels it's looking for based on runs-on. We match the labels from the webhook with the labels specified here. If all the labels specified here are present in the job's labels, this provider will be chosen and spawn a new runner. Default: ['ec2']
|
|
7402
7416
|
:param security_group: (deprecated) Security Group to assign to launched runner instances. Default: a new security group
|
|
7403
7417
|
:param security_groups: (experimental) Security groups to assign to launched runner instances. Default: a new security group
|
|
@@ -7712,7 +7726,7 @@ class Ec2RunnerProviderProps(RunnerProviderProps):
|
|
|
7712
7726
|
:param retry_options:
|
|
7713
7727
|
:param ami_builder:
|
|
7714
7728
|
:param image_builder: (experimental) Runner image builder used to build AMI containing GitHub Runner and all requirements. The image builder determines the OS and architecture of the runner. Default: Ec2RunnerProvider.imageBuilder()
|
|
7715
|
-
:param instance_type: (experimental) Instance type for launched runner instances. Default:
|
|
7729
|
+
:param instance_type: (experimental) Instance type for launched runner instances. Default: m6i.large
|
|
7716
7730
|
:param labels: (experimental) GitHub Actions labels used for this provider. These labels are used to identify which provider should spawn a new on-demand runner. Every job sends a webhook with the labels it's looking for based on runs-on. We match the labels from the webhook with the labels specified here. If all the labels specified here are present in the job's labels, this provider will be chosen and spawn a new runner. Default: ['ec2']
|
|
7717
7731
|
:param security_group: (deprecated) Security Group to assign to launched runner instances. Default: a new security group
|
|
7718
7732
|
:param security_groups: (experimental) Security groups to assign to launched runner instances. Default: a new security group
|
|
@@ -7829,7 +7843,7 @@ class Ec2RunnerProviderProps(RunnerProviderProps):
|
|
|
7829
7843
|
def instance_type(self) -> typing.Optional[_aws_cdk_aws_ec2_ceddda9d.InstanceType]:
|
|
7830
7844
|
'''(experimental) Instance type for launched runner instances.
|
|
7831
7845
|
|
|
7832
|
-
:default:
|
|
7846
|
+
:default: m6i.large
|
|
7833
7847
|
|
|
7834
7848
|
:stability: experimental
|
|
7835
7849
|
'''
|
|
@@ -8019,7 +8033,7 @@ class EcsRunnerProvider(
|
|
|
8019
8033
|
:param cpu: (experimental) The number of cpu units used by the task. 1024 units is 1 vCPU. Fractions of a vCPU are supported. Default: 1024
|
|
8020
8034
|
:param docker_in_docker: (experimental) Support building and running Docker images by enabling Docker-in-Docker (dind) and the required CodeBuild privileged mode. Disabling this can speed up provisioning of CodeBuild runners. If you don't intend on running or building Docker images, disable this for faster start-up times. Default: true
|
|
8021
8035
|
:param image_builder: (experimental) Runner image builder used to build Docker images containing GitHub Runner and all requirements. The image builder determines the OS and architecture of the runner. Default: EcsRunnerProvider.imageBuilder()
|
|
8022
|
-
:param instance_type: (experimental) Instance type of ECS cluster instances. Only used when creating a new cluster. Default:
|
|
8036
|
+
:param instance_type: (experimental) Instance type of ECS cluster instances. Only used when creating a new cluster. Default: m6i.large or m6g.large
|
|
8023
8037
|
:param labels: (experimental) GitHub Actions labels used for this provider. These labels are used to identify which provider should spawn a new on-demand runner. Every job sends a webhook with the labels it's looking for based on runs-on. We match the labels from the webhook with the labels specified here. If all the labels specified here are present in the job's labels, this provider will be chosen and spawn a new runner. Default: ['ecs']
|
|
8024
8038
|
:param max_instances: (experimental) The maximum number of instances to run in the cluster. Only used when creating a new cluster. Default: 5
|
|
8025
8039
|
:param memory_limit_mib: (experimental) The amount (in MiB) of memory used by the task. Default: 3500, unless ``memoryReservationMiB`` is used and then it's undefined
|
|
@@ -8355,7 +8369,7 @@ class EcsRunnerProviderProps(RunnerProviderProps):
|
|
|
8355
8369
|
:param cpu: (experimental) The number of cpu units used by the task. 1024 units is 1 vCPU. Fractions of a vCPU are supported. Default: 1024
|
|
8356
8370
|
:param docker_in_docker: (experimental) Support building and running Docker images by enabling Docker-in-Docker (dind) and the required CodeBuild privileged mode. Disabling this can speed up provisioning of CodeBuild runners. If you don't intend on running or building Docker images, disable this for faster start-up times. Default: true
|
|
8357
8371
|
:param image_builder: (experimental) Runner image builder used to build Docker images containing GitHub Runner and all requirements. The image builder determines the OS and architecture of the runner. Default: EcsRunnerProvider.imageBuilder()
|
|
8358
|
-
:param instance_type: (experimental) Instance type of ECS cluster instances. Only used when creating a new cluster. Default:
|
|
8372
|
+
:param instance_type: (experimental) Instance type of ECS cluster instances. Only used when creating a new cluster. Default: m6i.large or m6g.large
|
|
8359
8373
|
:param labels: (experimental) GitHub Actions labels used for this provider. These labels are used to identify which provider should spawn a new on-demand runner. Every job sends a webhook with the labels it's looking for based on runs-on. We match the labels from the webhook with the labels specified here. If all the labels specified here are present in the job's labels, this provider will be chosen and spawn a new runner. Default: ['ecs']
|
|
8360
8374
|
:param max_instances: (experimental) The maximum number of instances to run in the cluster. Only used when creating a new cluster. Default: 5
|
|
8361
8375
|
:param memory_limit_mib: (experimental) The amount (in MiB) of memory used by the task. Default: 3500, unless ``memoryReservationMiB`` is used and then it's undefined
|
|
@@ -8550,7 +8564,7 @@ class EcsRunnerProviderProps(RunnerProviderProps):
|
|
|
8550
8564
|
|
|
8551
8565
|
Only used when creating a new cluster.
|
|
8552
8566
|
|
|
8553
|
-
:default:
|
|
8567
|
+
:default: m6i.large or m6g.large
|
|
8554
8568
|
|
|
8555
8569
|
:stability: experimental
|
|
8556
8570
|
'''
|
|
@@ -10316,7 +10330,7 @@ class Ec2Runner(
|
|
|
10316
10330
|
:param id: -
|
|
10317
10331
|
:param ami_builder:
|
|
10318
10332
|
:param image_builder: (experimental) Runner image builder used to build AMI containing GitHub Runner and all requirements. The image builder determines the OS and architecture of the runner. Default: Ec2RunnerProvider.imageBuilder()
|
|
10319
|
-
:param instance_type: (experimental) Instance type for launched runner instances. Default:
|
|
10333
|
+
:param instance_type: (experimental) Instance type for launched runner instances. Default: m6i.large
|
|
10320
10334
|
:param labels: (experimental) GitHub Actions labels used for this provider. These labels are used to identify which provider should spawn a new on-demand runner. Every job sends a webhook with the labels it's looking for based on runs-on. We match the labels from the webhook with the labels specified here. If all the labels specified here are present in the job's labels, this provider will be chosen and spawn a new runner. Default: ['ec2']
|
|
10321
10335
|
:param security_group: (deprecated) Security Group to assign to launched runner instances. Default: a new security group
|
|
10322
10336
|
:param security_groups: (experimental) Security groups to assign to launched runner instances. Default: a new security group
|
|
@@ -18,9 +18,9 @@ import constructs._jsii
|
|
|
18
18
|
|
|
19
19
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
20
20
|
"@cloudsnorkel/cdk-github-runners",
|
|
21
|
-
"0.13.
|
|
21
|
+
"0.13.4",
|
|
22
22
|
__name__[0:-6],
|
|
23
|
-
"cdk-github-runners@0.13.
|
|
23
|
+
"cdk-github-runners@0.13.4.jsii.tgz",
|
|
24
24
|
)
|
|
25
25
|
|
|
26
26
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cloudsnorkel.cdk-github-runners
|
|
3
|
-
Version: 0.13.
|
|
3
|
+
Version: 0.13.4
|
|
4
4
|
Summary: CDK construct to create GitHub Actions self-hosted runners. A webhook listens to events and creates ephemeral runners on the fly.
|
|
5
5
|
Home-page: https://github.com/CloudSnorkel/cdk-github-runners.git
|
|
6
6
|
Author: Amir Szekely<amir@cloudsnorkel.com>
|
|
@@ -38,11 +38,11 @@ Requires-Dist: typeguard ~=2.13.3
|
|
|
38
38
|
|
|
39
39
|
Use this CDK construct to create ephemeral [self-hosted GitHub runners](https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners) on-demand inside your AWS account.
|
|
40
40
|
|
|
41
|
-
* Easy to configure GitHub integration with a web-based interface
|
|
42
|
-
* Customizable runners with decent defaults
|
|
43
|
-
* Multiple runner configurations controlled by labels
|
|
44
|
-
* Everything fully hosted in your account
|
|
45
|
-
* Automatically updated build environment with latest runner version
|
|
41
|
+
* 🧩 Easy to configure GitHub integration with a web-based interface
|
|
42
|
+
* 🧠 Customizable runners with decent defaults
|
|
43
|
+
* 🏃🏻 Multiple runner configurations controlled by labels
|
|
44
|
+
* 🔐 Everything fully hosted in your account
|
|
45
|
+
* 🔃 Automatically updated build environment with latest runner version
|
|
46
46
|
|
|
47
47
|
Self-hosted runners in AWS are useful when:
|
|
48
48
|
|
|
@@ -350,6 +350,20 @@ Other useful metrics to track:
|
|
|
350
350
|
1. Use `GitHubRunners.metricJobCompleted()` to get a metric for the number of completed jobs broken down by labels and job success.
|
|
351
351
|
2. Use `GitHubRunners.metricTime()` to get a metric for the total time a runner is running. This includes the overhead of starting the runner.
|
|
352
352
|
|
|
353
|
+
## Contributing
|
|
354
|
+
|
|
355
|
+
If you use and love this project, please consider contributing.
|
|
356
|
+
|
|
357
|
+
1. 🪳 If you see something, say something. [Issues](https://github.com/CloudSnorkel/cdk-github-runners/issues) help improve the quality of the project.
|
|
358
|
+
|
|
359
|
+
* Include relevant logs and package versions for bugs.
|
|
360
|
+
* When possible, describe the use-case behind feature requests.
|
|
361
|
+
2. 🛠️ [Pull requests](https://github.com/CloudSnorkel/cdk-github-runners/pulls) are welcome.
|
|
362
|
+
|
|
363
|
+
* Run `npm run build` before submitting to make sure all tests pass.
|
|
364
|
+
* Allow edits from maintainers so small adjustments can be made easily.
|
|
365
|
+
3. 💵 Consider [sponsoring](https://github.com/sponsors/CloudSnorkel) the project to show your support and optionally get your name listed below.
|
|
366
|
+
|
|
353
367
|
## Other Options
|
|
354
368
|
|
|
355
369
|
1. [philips-labs/terraform-aws-github-runner](https://github.com/philips-labs/terraform-aws-github-runner) if you're using Terraform
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
cloudsnorkel/cdk_github_runners/__init__.py,sha256=LK6JUJoDoPN5IJHTroRibrmP9Bqr1hj3DPk3Pk34mf4,603186
|
|
2
|
+
cloudsnorkel/cdk_github_runners/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
cloudsnorkel/cdk_github_runners/_jsii/__init__.py,sha256=3MSZtQ-RSyro2E7LPMIKhFqb9Z2ujXpdl-UJtVwItCk,508
|
|
4
|
+
cloudsnorkel/cdk_github_runners/_jsii/cdk-github-runners@0.13.4.jsii.tgz,sha256=15HmL5aA6i9V9c1idvBcFnyq8MjVlWndCyj7zUXR3jE,1438707
|
|
5
|
+
cloudsnorkel.cdk_github_runners-0.13.4.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
6
|
+
cloudsnorkel.cdk_github_runners-0.13.4.dist-info/METADATA,sha256=97zZc8NSnAGc6PygNVp5lMnGlq26iMV7dJvTk5XmE0s,16467
|
|
7
|
+
cloudsnorkel.cdk_github_runners-0.13.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
8
|
+
cloudsnorkel.cdk_github_runners-0.13.4.dist-info/top_level.txt,sha256=6vUrT-dcGOiRMT4Q6gEQPznoyS7nHOJ269MHpo4DEd8,13
|
|
9
|
+
cloudsnorkel.cdk_github_runners-0.13.4.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
cloudsnorkel/cdk_github_runners/__init__.py,sha256=ujO9tqWBYZP7a3dgjsmy6QWYBY5bGMH5WLmRA9pDg8Q,602385
|
|
2
|
-
cloudsnorkel/cdk_github_runners/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
cloudsnorkel/cdk_github_runners/_jsii/__init__.py,sha256=t78xFxuof8Y48ayy0qCw_sFWZu6hYERk-ZBOVQVJIFY,508
|
|
4
|
-
cloudsnorkel/cdk_github_runners/_jsii/cdk-github-runners@0.13.3.jsii.tgz,sha256=VCbnCYwMGts_SVXHu30tcZYTIOoFDX33nN9mn48s_KI,1437512
|
|
5
|
-
cloudsnorkel.cdk_github_runners-0.13.3.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
6
|
-
cloudsnorkel.cdk_github_runners-0.13.3.dist-info/METADATA,sha256=nYlr8Oyr44ZvmnRechkAkgHrsXm9Jzs5QfRhRV4pF0s,15681
|
|
7
|
-
cloudsnorkel.cdk_github_runners-0.13.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
8
|
-
cloudsnorkel.cdk_github_runners-0.13.3.dist-info/top_level.txt,sha256=6vUrT-dcGOiRMT4Q6gEQPznoyS7nHOJ269MHpo4DEd8,13
|
|
9
|
-
cloudsnorkel.cdk_github_runners-0.13.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|