Skip to content

Commit

Permalink
Merge pull request #3713 from input-output-hk/lehins/improve-ci-resil…
Browse files Browse the repository at this point in the history
…iency-against-github-issues

Improve CI resiliency against GitHub issues
  • Loading branch information
lehins authored Sep 6, 2023
2 parents c7b6ce1 + cbba9bc commit 70fc0d2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,15 @@ jobs:
REF=a31ac75
curl -L https://github.com/input-output-hk/cardano-mainnet-mirror/tarball/$REF -o mainnet-mirror.tgz
tar -xzf mainnet-mirror.tgz
mv input-output-hk-cardano-mainnet-mirror-$REF/epochs .
if [ "$?" == 0 ]; then
mv input-output-hk-cardano-mainnet-mirror-$REF/epochs .
else
git clone https://github.com/input-output-hk/cardano-mainnet-mirror
cd cardano-mainnet-mirror
git checkout $REF
mv epochs ..
cd ..
fi
- name: Run tests
run: |
Expand Down

0 comments on commit 70fc0d2

Please sign in to comment.