Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwthompson committed Nov 14, 2024
1 parent 39b0d2b commit 69c25cd
Showing 1 changed file with 2 additions and 19 deletions.
21 changes: 2 additions & 19 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
if: ${{ matrix.openeye == true }}
uses: mamba-org/setup-micromamba@v1
with:
micromamba-binary-path: ~/.local/bin/micromamba
environment-file: devtools/conda-envs/deployment_openeye.yaml
create-args: >-
python=${{ matrix.python-version }}
Expand All @@ -50,6 +51,7 @@ jobs:
if: ${{ matrix.openeye == false }}
uses: mamba-org/setup-micromamba@v1
with:
micromamba-binary-path: ~/.local/bin/micromamba
environment-file: devtools/conda-envs/deployment.yaml
create-args: >-
python=${{ matrix.python-version }}
Expand All @@ -62,24 +64,6 @@ jobs:
env:
SECRET_OE_LICENSE: ${{ secrets.OE_LICENSE }}

- name: Verify that the latest version was installed
run: |
cd /tmp/
export LATEST_TAG=$(git ls-remote --tags https://github.com/openforcefield/openff-bespokefit.git | cut -f2 | grep -E "([0-9]+)\.([0-9]+)\.([0-9]+)$" | sort --version-sort | tail -1 | sed 's/refs\/tags\///')
export FOUND_VER=$(python -c "import openff.bespokefit; print(openff.bespokefit.__version__)")
if [[ $LATEST_TAG != $FOUND_VER ]]; then
echo "Latest tag is"
echo $LATEST_TAG
echo "Found version is"
echo $FOUND_VER
echo "Version mismatch"
exit 1
fi
cd -
- name: Checkout most recent tag
run: |
git fetch --all
Expand All @@ -91,7 +75,6 @@ jobs:
- name: Run Integration Tests
if: ${{ matrix.integration == true }}
shell: bash -l {0}
run: |
openff-bespoke executor run --smiles 'CC' \
--workflow 'default' \
Expand Down

0 comments on commit 69c25cd

Please sign in to comment.