Skip to content

Commit

Permalink
now just flipping random switches of GH Actions and praying
Browse files Browse the repository at this point in the history
  • Loading branch information
iskandr committed Mar 13, 2024
1 parent 6d1fa48 commit 5461ca4
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/tests.yml
Expand Up @@ -20,6 +20,10 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Get the current WORKDIR
run: |
export WORKDIR=$PWD/..
ls -l $WORKDIR
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
Expand All @@ -31,14 +35,13 @@ jobs:
with:
repository: openvax/netmhc-bundle
token: ${{ secrets.NETMHC_BUNDLE_ACCESS_TOKEN }}
path: $HOME/netmhc-bundle
path: $WORKDIR/netmhc-bundle
- name: Configure netmhc-bundle paths
run: |
export NETMHC_BUNDLE_HOME=$HOME/netmhc-bundle
echo "Home dir:" && ls -l $HOME && echo "NetMHC-Bundle dir:" && ls -l $NETMHC_BUNDLE_HOME
mkdir $HOME/tmp
export NETMHC_BUNDLE_TMPDIR=$HOME/tmp
export NETMHC_BUNDLE_HOME=$WORKDIR/netmhc-bundle
echo "NetMHC-bundle dir:" && ls -l $NETMHC_BUNDLE_HOME
mkdir $WORKDIR/tmp
export NETMHC_BUNDLE_TMPDIR=$WORKDIR/tmp
export PATH=$PATH:$NETMHC_BUNDLE_HOME/bin
# make sure netmhc-bundle tools are actually installed
echo `which netMHC` && echo `which netMHCpan` && echo `which netMHCcons`
Expand Down

0 comments on commit 5461ca4

Please sign in to comment.