Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix no-op tests #3446

Merged
merged 1 commit into from
Oct 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
AWS_SECRET_ACCESS_KEY: ${{ secrets.OP_AWS_SECRET_ACCESS_KEY }}

- uses: actions/setup-python@v3
with:
python-version: '3.11'

- uses: hashicorp/setup-terraform@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions workers/dockerfiles/Dockerfile.no_op
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ RUN mkdir -p gene_indexes
WORKDIR /home/user/gene_indexes
ENV ID_REFINERY_URL=https://zenodo.org/record/1410647/files/all_1536267482.zip
RUN <<EOF
curl -O $ID_REFINERY_URL
echo $ID_REFINERY_URL > /etc/identifier_refinery_url
unzip *.zip
rm *.zip
wget $ID_REFINERY_URL
unzip all_1536267482.zip
rm all_1536267482.zip
EOF
# End Noop-specific.

Expand Down