Skip to content

Commit

Permalink
ci(dragons): 👷 Remove macos worker request
Browse files Browse the repository at this point in the history
This is now covered in Issue #39.
  • Loading branch information
teald committed Jul 31, 2024
1 parent d2549a7 commit ed6f014
Showing 1 changed file with 2 additions and 29 deletions.
31 changes: 2 additions & 29 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- macos-latest
# TODO(teald): - macos-latest | Issue #39

steps:
- name: "Check out the repo"
Expand All @@ -47,36 +47,9 @@ jobs:
echo "Linux runner IP: $(curl -s https://ipinfo.io/ip)"
fi
# - name: Configure conda
# # This is a workaround for it being difficult to set up conda
# # with the appropriate architecture using the conda actions.
# if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'macos')
# run: |
# conda init

# # Add the conda-forge channel
# conda config --add channels conda-forge

# # Configure conda to use x86_64 architecture for mac.
# if [[ "$RUNNER_OS" == "Linux" ]]; then
# CONDA_SUBDIR="linux-64" conda create -n "test_env" python=3.10 -y
# conda activate test_env
# elif [[ "$RUNNER_OS" == "macOS" ]]; then
# # Set the conda subdirectory to osx-64
# CONDA_SUBDIR=osx-64 conda create -n "test_env" python=3.10 -y
# conda activate test_env
# conda config --env --set subdir osx-64
# else
# echo "Unsupported OS: $RUNNER_OS"
# exit 1
# fi

# # These are required for installing dependencies, especially
# # the git repo ones, in the next step.
# conda install git pip setuptools nox poetry -y

- name: "Install nox, poetry in the base environment"
run: |
python -m pip install --upgrade pip
python -m pip install nox poetry
- name: "DRAGONS release tests"
Expand Down

0 comments on commit ed6f014

Please sign in to comment.