Skip to content

Commit

Permalink
Remove manual install test on OSX
Browse files Browse the repository at this point in the history
We tried to add a test using an OSX manual install, but it failed with the error
So we can only continue to test on linux for now

```
Run supercharge/[email protected]
  with:
    mongodb-version: 4.4.0
Error: Container action is only supported on Linux
```
  • Loading branch information
shankari committed Apr 17, 2023
1 parent 28ad00d commit 1e67cd6
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions .github/workflows/test-with-manual-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
include:
- os: macos-latest
PLATFORM: MacOSX-x86_64
- os: ubuntu-latest
PLATFORM: Linux-x86_64
os: [ubuntu-latest]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -45,20 +40,12 @@ jobs:
- name: Install miniconda
shell: bash -l {0}
run: |
source setup/setup_conda.sh ${{ matrix.PLATFORM }}
source setup/setup_conda.sh Linux-x86_64
- name: Check whether the CI environment variable is set
shell: bash -l {0}
run: |
source setup/activate_conda.sh
if [ ${{ matrix.PLATFORM }} == "Linux-x86_64" ]; then
echo "Linux install, going to check conda path"
which conda
else
echo "OSX install, skipping conda path check"
echo " since 'which conda' inexplicably returns with status code 1"
echo " only in the CI environment"
fi
echo $CI
- name: Setup the emission environment for testing
Expand Down

0 comments on commit 1e67cd6

Please sign in to comment.