workflow debugging

Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>
This commit is contained in:
Anton-4 2022-12-09 17:52:21 +01:00 committed by GitHub
parent 7cdb16749d
commit 8bf9675d12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,12 +24,16 @@ jobs:
curl --request GET \
--url ${{ env.RELEASE_URL }} \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}'
- run: ls
- name: remove everything in this dir except the tar # we want to test like a user who would have downloaded the release, so we clean up all files from the repo checkout
run: ls | grep -v "roc_nightly.*tar\.gz" | xargs rm -rf
- name: decompress the tar
run: ls | grep "roc_nightly.*tar\.gz" | xargs tar -xzvf
- run: ls
- name: test roc hello world
run: ./roc examples/helloWorld.roc