Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -400,3 +400,24 @@ lib_injection_tests:
- pyenv install ${PYTHON} && pyenv global ${PYTHON}
- python --version
- python lib-injection/sources/sitecustomize.py


encoders_profile:
needs: []
stage: tests
tags: [ "arch:amd64" ]
image: registry.ddbuild.io/images/mirror/ubuntu:25.04
script:
- export PYENV_ROOT="${HOME}/.pyenv"
- export PATH="${PYENV_ROOT}/shims:${PYENV_ROOT}/bin:${PATH}"
- apt-get update && apt install build-essential zlib1g-dev libssl-dev curl git libffi-dev sudo -y
- PYENV_GIT_TAG=v2.6.17 curl https://pyenv.run | bash
- pyenv --version
- pyenv install 3.10 && pyenv global 3.10
- python --version
- |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
export PATH="$HOME/.cargo/bin:$PATH"
- mkdir profile_output
- scripts/profiles/encoders/setup.sh profile_output
- scripts/profiles/encoders/run.sh profile_output
2 changes: 1 addition & 1 deletion scripts/profiles/encoders/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash -eu
#!/usr/bin/bash

set -eu

Expand Down
2 changes: 1 addition & 1 deletion scripts/profiles/encoders/setup.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash -eu
#!/usr/bin/bash

set -eu

Expand Down