Skip to content

Commit

Permalink
fixed step cwd
Browse files Browse the repository at this point in the history
  • Loading branch information
mryzhov committed Dec 5, 2023
1 parent e326846 commit be48d58
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ci/azure/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
MODELS_PATH: $(REPO_DIR)/../testdata
WORK_DIR: $(Pipeline.Workspace)/_w
BUILD_DIR: $(WORK_DIR)/build
BUILD_WHEEL_DIR: ${BUILD_DIR}/wheels
BUILD_WHEEL_DIR: $(BUILD_DIR)/wheels
BIN_DIR: $(OPENVINO_REPO_DIR)/bin/intel64/$(BUILD_TYPE)
INSTALL_DIR: $(WORK_DIR)/install_pkg
SETUPVARS: $(INSTALL_DIR)/setupvars.sh
Expand Down
4 changes: 2 additions & 2 deletions .ci/azure/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ jobs:
- script: |
source .env3/bin/activate && source $(SETUPVARS)
python -m pip install build
python -m build --wheel --outdir $(BUILD_WHEEL_DIR)
workingDirectory: $(REPO_DIR)\modules\custom_operations
python -m build --wheel --outdir $(BUILD_WHEEL_DIR) $(REPO_DIR)\modules\custom_operations
workingDirectory: $(WORK_DIR)
displayName: 'Build tokenizers wheel'
- script: |
Expand Down
4 changes: 2 additions & 2 deletions .ci/azure/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ jobs:
- script: |
call $(SETUPVARS) -pyver 3.8
$(PYTHON_EXE) -m pip install build
$(PYTHON_EXE) -m build --wheel --outdir $(BUILD_WHEEL_DIR_CONTRIB)
workingDirectory: $(REPO_DIR)\modules\custom_operations
$(PYTHON_EXE) -m build --wheel --outdir $(BUILD_WHEEL_DIR_CONTRIB) $(REPO_DIR)\modules\custom_operations
workingDirectory: $(WORK_DIR)
displayName: 'Build tokenizers wheel'
- script: |
Expand Down

0 comments on commit be48d58

Please sign in to comment.