I guess poetry needs a containr to run int

This commit is contained in:
Alek Westover
2023-07-11 14:34:16 -04:00
parent e9700d4022
commit 7619a169c1
2 changed files with 7 additions and 1 deletions

View File

@@ -921,6 +921,9 @@ jobs:
# (github.ref_name == 'main' || github.ref_name == 'release') &&
# github.event_name != 'workflow_dispatch'
runs-on: ${{ github.ref_name == 'release' && fromJSON('["self-hosted", "prod", "x64"]') || fromJSON('["self-hosted", "gen3", "small"]') }}
container:
image: 369495373322.dkr.ecr.eu-central-1.amazonaws.com/rust:pinned
options: --init
needs: [ tag, promote-images ]
strategy:
fail-fast: false

View File

@@ -2,7 +2,10 @@ import json
import os
# enable custom extensions for specific tenants
enabled_extensions = {"123454321": ["anon"]}
enabled_extensions = {
"123454321": ["anon"],
"public": ["embedding"]
}
control_data = {}
for control_file in os.listdir("control_files"):