Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 111c77e

Browse filesBrowse files
Trottaduh95
authored andcommitted
tools: automate updates for test/fixtures/test426
PR-URL: #60978 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent 10e8681 commit 111c77e
Copy full SHA for 111c77e

2 files changed

+38Lines changed: 38 additions & 0 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎.github/workflows/tools.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/tools.yml
+9Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ on:
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
Collapse file
+29Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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"

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.