Skip to content

Commit

Permalink
update riot to 0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
erikayasuda committed Oct 18, 2024
1 parent d1f8582 commit cc1e27c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.templ.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ commands:
description: "Install riot"
steps:
# Make sure we install and run riot on Python 3
- run: pip3 install riot@git+https://github.com/DataDog/riot@taegyunkim/upload-artifact
- run: pip3 install riot==0.20.0

setup_rust:
description: "Install rust toolchain"
Expand Down
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
name: Generate config
command: |
export GIT_COMMIT_DESC=$(git log -n 1 $CIRCLE_SHA1)
pip3 install riot@git+https://github.com/DataDog/riot@taegyunkim/upload-artifact
pip3 install riot==0.20.0
riot -P -v run --pass-env -s circleci-gen-config -- -v
- continuation/continue:
configuration_path: .circleci/config.gen.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-package-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
python -m pip install --upgrade pip
pip install packaging
pip install requests
pip install riot@git+https://github.com/DataDog/riot@taegyunkim/upload-artifact
pip install riot==0.20.0
- name: Run regenerate-riot-latest
run: scripts/regenerate-riot-latest.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/requirements-locks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: pyenv global 3.10 3.7 3.8 3.9 3.11 3.12

- name: Install Dependencies
run: pip install --upgrade pip && pip install riot@git+https://github.com/DataDog/riot@taegyunkim/upload-artifact
run: pip install --upgrade pip && pip install riot==0.20.0

- name: Generate riot locks
run: scripts/compile-and-prune-test-requirements
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build_base_venvs:
CMAKE_BUILD_PARALLEL_LEVEL: 12
PIP_VERBOSE: 1
script:
- pip install riot@git+https://github.com/DataDog/riot@taegyunkim/upload-artifact
- pip install riot==0.20.0
- riot -P -v generate --python=$PYTHON_VERSION
artifacts:
name: venv_$PYTHON_VERSION
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ variables:
services:
- !reference [.services, ddagent]
script:
- pip install riot@git+https://github.com/DataDog/riot@taegyunkim/upload-artifact
- pip install riot==0.20.0
- unset DD_SERVICE
- unset DD_ENV
- unset DD_TAGS
Expand Down
2 changes: 1 addition & 1 deletion hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies = [
"ddapm-test-agent>=1.2.0",
"packaging==23.1",
"pygments==2.16.1",
"riot @ git+https://github.com/DataDog/riot@taegyunkim/upload-artifact",
"riot==0.20.0",
"ruff==0.1.3",
"clang-format==18.1.5",
"cmake-format==0.6.13",
Expand Down
2 changes: 1 addition & 1 deletion scripts/ddtest
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fi
for i in {1..3}; do $compose_cmd pull -q testrunner && break || sleep 3; done

# TODO(DEV): Install riot in the docker image
FULL_CMD="pip install -q --disable-pip-version-check riot@git+https://github.com/DataDog/riot@taegyunkim/upload-artifact && $CMD"
FULL_CMD="pip install -q --disable-pip-version-check riot==0.20.0 && $CMD"

# install and upgrade riot in case testrunner image has not been updated
# DEV: Use `--no-TTY` and `--quiet-pull` when running in CircleCI
Expand Down

0 comments on commit cc1e27c

Please sign in to comment.