Skip to content

Commit

Permalink
- ci - Upgrade python used in ci to v3.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizhu256 committed Dec 25, 2024
1 parent b229650 commit 60c02e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- ubuntu-latest
- windows-latest
python_version:
- "3.10"
- "3.12"
# base - .github/workflows/ci.yml - beg
env:
CI_MATRIX_NAME: >
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- jslint - try to improve parser to be able to parse jquery.js without stopping.

# v2024.12.1-beta
- ci - Upgrade python used in ci to v3.12.
- ci - Auto-create asset_image_logo_256.png from asset_image_logo_256.html.
- ci - Fix shell-function shRollupFetch() from making excessive github-api-request.
- ci - Fix improperly-cropped jslint-logo, auto-generated by headless-chrome.
Expand Down
4 changes: 2 additions & 2 deletions jslint_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1605,11 +1605,11 @@ import moduleUrl from "url";

shImageLogoCreate() {(set -e
# This function will create .png logo.
FILE=".artifact/asset_image_logo_256.png"
if [ ! -f "$FILE" ]
if [ ! -f asset_image_logo_256.html ]
then
return
fi
FILE=".artifact/asset_image_logo_256.png"
shBrowserScreenshot asset_image_logo_256.html \
"-screenshot=$(node --print "path.resolve(process.argv[1])" "$FILE")"
gm mogrify -crop 256x256 "$FILE"
Expand Down

0 comments on commit 60c02e7

Please sign in to comment.