-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ECC-1793: develop binary wheel - Linux
- Loading branch information
1 parent
f4c5ede
commit fc6c948
Showing
3 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/usr/bin/env bash | ||
# (C) Copyright 2024 ECMWF. | ||
# | ||
# This software is licensed under the terms of the Apache Licence Version 2.0 | ||
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. | ||
# In applying this licence, ECMWF does not waive the privileges and immunities | ||
# granted to it by virtue of its status as an intergovernmental organisation | ||
# nor does it submit to any jurisdiction. | ||
|
||
set -xe | ||
version=$1 | ||
|
||
source /opt/conda/etc/profile.d/conda.sh | ||
|
||
CONDA_PY_ENV_DIR=$RUNNER_TEMP/venv_$version | ||
|
||
if [ ! -d "${CONDA_PY_ENV_DIR}" ]; then | ||
conda create -y -p $CONDA_PY_ENV_DIR | ||
fi | ||
|
||
conda activate $CONDA_PY_ENV_DIR | ||
conda install -y python=${{ inputs.version }} openldap | ||
|
||
which python3 | ||
python3 --version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/usr/bin/env bash | ||
# (C) Copyright 2024 ECMWF. | ||
# | ||
# This software is licensed under the terms of the Apache Licence Version 2.0 | ||
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. | ||
# In applying this licence, ECMWF does not waive the privileges and immunities | ||
# granted to it by virtue of its status as an intergovernmental organisation | ||
# nor does it submit to any jurisdiction. | ||
|
||
set -eaux | ||
python_version=$1 | ||
|
||
ls -l | ||
source ./scripts/select-python-linux.sh ${python_version} | ||
|
||
echo $PATH | ||
pwd | ||
ls -l | ||
|
||
pip install *.whl | ||
pip install pytest | ||
pip install -r tests/requirements.txt | ||
pip freeze | ||
|
||
cd tests | ||
pytest -v -s | ||
|
||
rm -fr *.whl tests |