File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed
Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 3838 - root-certificates
3939 - simdjson
4040 - sqlite
41+ - test426-fixtures
4142 - undici
4243 - uvwasi
4344 - zlib
@@ -255,6 +256,14 @@ jobs:
255256 cat temp-output
256257 tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
257258 rm temp-output
259+ - id : test426-fixtures
260+ subsystem : test
261+ label : test
262+ run : |
263+ bash tools/dep_updaters/update-test426-fixtures.sh > temp-output
264+ cat temp-output
265+ tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
266+ rm temp-output
258267 - id : undici
259268 subsystem : deps
260269 label : dependencies
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ set -ex
4+
5+ BASE_DIR=$( cd " $( dirname " $0 " ) /../.." && pwd)
6+
7+ TARGET_DIR=" $BASE_DIR /test/fixtures/test426"
8+ README=" $BASE_DIR /test/test426/README.md"
9+ TARBALL_URL=$( curl -fsIo /dev/null -w ' %header{Location}' https://github.com/tc39/source-map-tests/archive/HEAD.tar.gz)
10+ SHA=$( basename " $TARBALL_URL " )
11+
12+ CURRENT_SHA=$( sed -n ' s#^.*https://github.com/tc39/source-map-tests/commit/\([0-9a-f]*\).*$#\1#p' " $README " )
13+
14+ if [ " $CURRENT_SHA " = " $SHA " ]; then
15+ echo " Already up-to-date"
16+ exit 0
17+ fi
18+
19+ rm -rf " $TARGET_DIR "
20+ mkdir " $TARGET_DIR "
21+ curl -f " $TARBALL_URL " | tar -xz --strip-components 1 -C " $TARGET_DIR "
22+
23+ TMP_FILE=$( mktemp)
24+ sed " s/$CURRENT_SHA /$SHA /" " $README " > " $TMP_FILE "
25+ mv " $TMP_FILE " " $README "
26+
27+ # The last line of the script should always print the new version,
28+ # as we need to add it to $GITHUB_ENV variable.
29+ echo " NEW_VERSION=$SHA "
You can’t perform that action at this time.
0 commit comments