Skip to content

Commit

Permalink
fix: single-quote path 2 (#70)
Browse files Browse the repository at this point in the history
* single-quote path 2

It looks like there was an accidental reversion of #54 during #66

* Add test for use with cimg/python

* change test step name
  • Loading branch information
znd4 committed Mar 27, 2023
1 parent b14265e commit d6cff47
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .circleci/test-deploy.yml
Expand Up @@ -34,6 +34,15 @@ jobs:
- run: go version && go build ./...
- go/save-cache:
key: "integration"
int-test-cimg-python:
docker:
- image: cimg/python:3.11
steps:
- go/install-go:
version: 1.17.2
- run:
name: "Check if the correct python version is accessible & installed"
command: python --version | grep -q "^Python 3.11"
int-test-macos-executor:
macos:
xcode: "14.1.0"
Expand Down Expand Up @@ -90,6 +99,8 @@ workflows:
filters: *filters
- int-test-cimg-base:
filters: *filters
- int-test-cimg-python:
filters: *filters
- int-test-macos-executor:
filters: *filters
- int-test-vm-linux:
Expand All @@ -106,6 +117,7 @@ workflows:
- orb-tools/pack
- int-test-cimg-go
- int-test-cimg-base
- int-test-cimg-python
- int-test-macos-executor
- int-test-vm-linux
- int-test-dirty-cache
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/install.sh
Expand Up @@ -24,6 +24,6 @@ echo "Installing the requested version of Go."
curl --fail --location -sS "https://dl.google.com/go/go${ORB_VAL_VERSION}.${OSD_FAMILY}-${HOSTTYPE}.tar.gz" \
| $SUDO tar --no-same-owner --strip-components=1 --gunzip -x -C /usr/local/go/

echo "export PATH=$PATH:/usr/local/go/bin" >> "$BASH_ENV"
echo 'export PATH=$PATH:/usr/local/go/bin' >> "$BASH_ENV"
$SUDO chown -R "$(whoami)": /usr/local/go

0 comments on commit d6cff47

Please sign in to comment.