Skip to content

Commit 081de8d

Browse files
authored
Merge branch 'master' into feature/share-tags
2 parents df4ca4c + 5405b46 commit 081de8d

File tree

64 files changed

+2386
-962
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+2386
-962
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
#
3+
# Installs the latest version of 7zip plugin
4+
#
5+
6+
# http://redsymbol.net/articles/unofficial-bash-strict-mode/
7+
set -o errexit # abort on nonzero exitstatus
8+
set -o nounset # abort on unbound variable
9+
set -o pipefail # don't hide errors within pipes
10+
IFS=$'\n\t'
11+
12+
exec "$( dirname -- "$0"; )"/../../../scripts/install_7zip.bash

ci/github/integration-testing/dynamic-sidecar.bash

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ install() {
99
make devenv
1010
# shellcheck source=/dev/null
1111
source .venv/bin/activate
12+
sudo ./ci/github/helpers/install_7zip.bash
1213
pushd services/dynamic-sidecar
1314
make install-ci
1415
popd

ci/github/integration-testing/webserver.bash

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ install() {
99
make devenv
1010
# shellcheck source=/dev/null
1111
source .venv/bin/activate
12+
sudo ./ci/github/helpers/install_7zip.bash
1213
pushd services/web/server
1314
make install-ci
1415
popd

ci/github/unit-testing/dynamic-sidecar.bash

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ install() {
99
make devenv
1010
# shellcheck source=/dev/null
1111
source .venv/bin/activate
12+
sudo ./ci/github/helpers/install_7zip.bash
1213
pushd services/dynamic-sidecar
1314
make install-ci
1415
popd

ci/github/unit-testing/service-library.bash

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ install_all() {
1010
make devenv
1111
# shellcheck source=/dev/null
1212
source .venv/bin/activate
13+
sudo ./ci/github/helpers/install_7zip.bash
1314
pushd packages/service-library
1415
make "install-ci[all]"
1516
popd

packages/aws-library/requirements/_base.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,6 @@ referencing==0.29.3
313313
# via
314314
# jsonschema
315315
# jsonschema-specifications
316-
repro-zipfile==0.3.1
317-
# via -r requirements/../../../packages/service-library/requirements/_base.in
318316
requests==2.32.3
319317
# via opentelemetry-exporter-otlp-proto-http
320318
rich==13.8.1

packages/models-library/src/models_library/workspaces.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ def validate_workspace_id(cls, value, info: ValidationInfo):
3636
if scope == WorkspaceScope.SHARED and value is None:
3737
msg = f"workspace_id must be provided when workspace_scope is SHARED. Got {scope=}, {value=}"
3838
raise ValueError(msg)
39+
3940
if scope != WorkspaceScope.SHARED and value is not None:
4041
msg = f"workspace_id should be None when workspace_scope is not SHARED. Got {scope=}, {value=}"
4142
raise ValueError(msg)

packages/service-library/requirements/_base.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ pydantic
2727
pyinstrument
2828
pyyaml
2929
redis
30-
repro-zipfile
3130
tenacity
3231
toolz
3332
tqdm

packages/service-library/requirements/_base.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,6 @@ referencing==0.29.3
223223
# via
224224
# jsonschema
225225
# jsonschema-specifications
226-
repro-zipfile==0.3.1
227-
# via -r requirements/_base.in
228226
requests==2.32.3
229227
# via opentelemetry-exporter-otlp-proto-http
230228
rich==13.8.1

0 commit comments

Comments
 (0)