mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-08 02:24:04 +00:00
Build contributed recipes on aarch64 (#1974)
* Build contributed recipes on aarch64 * Add --pull to contributed recipes * Exclude recipe not working on aarch64
This commit is contained in:
@@ -10,7 +10,11 @@ THIS_DIR = Path(__file__).parent.resolve()
|
||||
|
||||
def generate_matrix() -> dict[str, Any]:
|
||||
dockerfiles = sorted(file.name for file in THIS_DIR.glob("*.dockerfile"))
|
||||
return {"dockerfile": dockerfiles}
|
||||
return {
|
||||
"dockerfile": dockerfiles,
|
||||
"runsOn": ["ubuntu-latest", "ARM64"],
|
||||
"exclude": [{"dockerfile": "oracledb.dockerfile", "runsOn": "ARM64"}],
|
||||
}
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
Reference in New Issue
Block a user