-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Builds for Python3.12, removed Python 3.8 and Python 3.9
- Loading branch information
1 parent
8363869
commit dea1a6a
Showing
27 changed files
with
152 additions
and
8,913 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Container Build Images | ||
variable app_name{} | ||
variable workspace_full_name{} | ||
variable python_version{} | ||
variable architecture{} | ||
|
||
resource "aws_ecr_repository" "build" { | ||
name = "${var.python_version}${var.architecture}build" | ||
image_tag_mutability = "MUTABLE" | ||
force_delete = true | ||
|
||
image_scanning_configuration { | ||
scan_on_push = true | ||
} | ||
} | ||
|
||
resource "aws_ssm_parameter" "build" { | ||
type = "String" | ||
description = "URL for ${var.python_version} ${var.architecture} repo" | ||
name = "/${var.app_name}/${var.workspace_full_name}/build/${var.python_version}/${var.architecture}/repo" | ||
value = aws_ecr_repository.build.repository_url | ||
overwrite = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
{ | ||
"python_versions": ["p3.8", "p3.9", "p3.10", "p3.10-arm64", "p3.11", "p3.11-arm64"], | ||
"p3.8": { | ||
"packages_file": "packages_p38.csv" | ||
}, | ||
"p3.9": { | ||
"packages_file": "packages_p39.csv" | ||
}, | ||
"python_versions": ["p3.10", "p3.10-arm64", "p3.11", "p3.11-arm64", "p3.12", "p3.12-arm64"], | ||
"p3.10": { | ||
"packages_file": "packages_p310.csv" | ||
}, | ||
"p3.11":{ | ||
"packages_file": "packages_p311.csv" | ||
}, | ||
"p3.12":{ | ||
"packages_file": "packages_p312.csv" | ||
}, | ||
"p3.10-arm64": { | ||
"packages_file": "packages_p310-arm64.csv" | ||
}, | ||
"p3.11-arm64":{ | ||
"packages_file": "packages_p311-arm64.csv" | ||
}, | ||
"p3.12-arm64":{ | ||
"packages_file": "packages_p312-arm64.csv" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Package_Name,License,Authors/Maintainers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Package_Name,License,Authors/Maintainers |
Oops, something went wrong.