-
Notifications
You must be signed in to change notification settings - Fork 14
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
Workflow to create GFM artifact(s) #56
Open
sebbASF
wants to merge
25
commits into
apache:main
Choose a base branch
from
sebbASF:build-artifacts
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+147
−51
Open
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
a7637dd
Use artifacts to cache the build
sebbASF 8b3e1e6
Extract artifact key name (#53)
sebbASF 07645b7
Distinguish the artifact key from directory name
sebbASF 1a525a5
Synch with main
sebbASF f11fb70
Keep synching with main
sebbASF a1928a1
Merge branch 'main' into artifact-caching
sebbASF 4d99cd3
Don't assume library name (#55)
sebbASF fdb938f
Workflow to create GFM artifact(s)
sebbASF a6bafc0
Opps - actually skip the build (#57)
sebbASF 3ebd89e
Don't cache artifacts in user repositories (#58)
sebbASF d81f735
Typo in workflow name
sebbASF 82760d9
Download the artifact to the work dir (#59)
sebbASF 27bd12b
Simplify build command
sebbASF f5246ff
Artifact caching (#60)
sebbASF 79a0543
Drop debug (#61)
sebbASF a24b728
Merge branch 'artifact-caching' into build-artifacts
sebbASF 4fd637e
Rework for updated build-cmark script
sebbASF 7250700
TEST - force rebuild
sebbASF b291ad1
Revert test
sebbASF c4a18f7
Update .github/workflows/build-artifacts.yml
sebbASF 03b50bb
Update .github/workflows/build-artifacts.yml
sebbASF f71bf33
Update .github/workflows/build-artifacts.yml
sebbASF c7426f7
Update .github/workflows/build-artifacts.yml
sebbASF 3d03a54
Don't use bare variables from matrix in run blocks
sebbASF 852cdd5
Add restrictive permission
sebbASF File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: Build GFM artifacts | ||
|
||
# Builds the GFM library as artifacts that can be used by other workflows | ||
# | ||
# It checks for any existing artifacts with an expiry date at least 10 days after today | ||
# If none are found, the library is built and uploaded. | ||
|
||
# This workflow can be run on demand, but is intended to be run on a weekly schedule | ||
# This should ensure that there is always at least one artifact available but no more than 2 | ||
|
||
on: | ||
# Schedule once a week | ||
schedule: | ||
- cron: '11 12 * * 0' | ||
push: | ||
paths: | ||
- '**/build-artifacts.yml' # self | ||
- 'pelican/build-cmark.sh' | ||
workflow_dispatch: | ||
|
||
permissions: | ||
content: read | ||
|
||
jobs: | ||
build-artifact: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
# Allow for multiple versions to be maintained | ||
matrix: | ||
gfm_version: | ||
- '0.28.3.gfm.12' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- name: Fetch and build version ${{ matrix.gfm_version }} | ||
id: build_gfm | ||
env: | ||
gfm_version: ${{ matrix.gfm_version }} | ||
run: | | ||
# N.B. This must agree with the definition in pelican/action.yml | ||
export GFM_ARTIFACT_KEY=gfm-lib-${gfm_version} | ||
echo "GFM_ARTIFACT_KEY=${GFM_ARTIFACT_KEY}" >> $GITHUB_ENV | ||
|
||
# Check if artifact is present (list all) | ||
curl -sS https://api.github.com/repos/$GITHUB_REPOSITORY/actions/artifacts?name=${GFM_ARTIFACT_KEY} >/tmp/artifact.json | ||
# when does last one expire? | ||
jq </tmp/artifact.json '[.artifacts[]|select(.expired==false)|.expires_at]|max' >/tmp/max.txt | ||
# is that more than 10 days away? (86400*10 seconds) | ||
OUT=$(jq </tmp/max.txt 'select(.>(now+864000|strftime("%FT%TZ")))') | ||
if [[ -n $OUT ]] | ||
then | ||
echo "Found a valid artifact for ${gfm_version} (expires $OUT)" | ||
exit 0 # No more to do | ||
fi | ||
|
||
echo "Could not find a valid artifact for ${gfm_version}; building another" | ||
# build GFM and set up LIBCMARKDIR | ||
export LIBCMARKDIR=/tmp/gfm-${gfm_version} | ||
mkdir -p ${LIBCMARKDIR} | ||
bash $GITHUB_WORKSPACE/pelican/build-cmark.sh ${gfm_version} ${LIBCMARKDIR} | ||
|
||
# Tell the save step what to save | ||
echo "created=${LIBCMARKDIR}" | tee -a $GITHUB_OUTPUT | ||
- name: Save the GFM build ${{ matrix.gfm_version }} | ||
if: ${{ steps.build_gfm.outputs.created }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ env.GFM_ARTIFACT_KEY }} | ||
path: ${{ steps.build_gfm.outputs.created }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's nice if you automatically debug on rerun...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that you should also move this to an
env:
, it isn't just${{ matrix
, it's${{
anythingThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I realise that. Except perhaps $(( github.xxx }} for some values of xxx
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for most of those, github has a $GITHUB_..., so you really should never do it :)... it's a safe enough rule.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AIUI,
$GITHUB_
is replaced at run-time, whereas${{ github.xxx }}
is replaced before passing the script to the runner. This means a simple replacement is not possible in general. In particular, Windows scripts may be tricky to fix.