Skip to content

Commit

Permalink
doc: better note
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Sep 9, 2024
1 parent 79e1a30 commit 13a12c0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ jobs:
path: iguana_src
- name: key
id: key
# FIXME: this builds the source code URL; using the GitHub REST API
# (via `curl --request`) is preferred to get the source code URL, but
# needs a PAT to mitigate API rate limits; for now just assume the URL
# - see https://github.com/JeffersonLab/iguana/pull/276
run: |
[ "${{ inputs.verset }}" = "minver" ] && \
root_version=$(iguana_src/meson/minimum-version.sh root tag) || \
Expand All @@ -113,7 +117,7 @@ jobs:
run: iguana_src/.github/install-dependency-packages.sh ${{ inputs.runner }} ${{ inputs.verset }}
- name: download ROOT source code
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
run: | # FIXME: prefer GitHub REST API (via `curl --request`) to get the source code URL (needs a PAT to mitigate API rate limits)
run: |
wget -nv --no-check-certificate --output-document root.tar.gz ${{ steps.key.outputs.root_url }}
tar xf root.tar.gz
ls -t
Expand Down

0 comments on commit 13a12c0

Please sign in to comment.