Skip to content

Commit d3d0db7

Browse files
committed
set the install path in the run statement
1 parent 5dadf7a commit d3d0db7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -554,14 +554,12 @@ jobs:
554554
sudo ./ci/install_protobuf.sh
555555
sudo ./ci/setup_grpc.sh -r $GRPC_VERSION -s $CXX_STANDARD -p protobuf
556556
- name: build and run tests
557-
env:
558-
OTEL_CPP_TEST_INSTALL_DIR: "${{ env.HOME }}/test-install"
559557
run: |
558+
export OTEL_CPP_TEST_INSTALL_DIR=$HOME/test-install
560559
./ci/do_ci.sh cmake.install.test
561560
- name: verify packages
562-
env:
563-
PKG_CONFIG_PATH: "${{ env.HOME }}/test-install/lib/pkgconfig:${{ env.PKG_CONFIG_PATH }}"
564561
run: |
562+
export PKG_CONFIG_PATH=$HOME/test-install/lib/pkgconfig:$PKG_CONFIG_PATH
565563
./ci/verify_packages.sh
566564
567565
plugin_test:

0 commit comments

Comments
 (0)