| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -38,6 +38,7 @@ on: | |||
| 38 | 38 | - root-certificates | |
| 39 | 39 | - simdjson | |
| 40 | 40 | - sqlite | |
| 41 | + - test426-fixtures | ||
| 41 | 42 | - undici | |
| 42 | 43 | - uvwasi | |
| 43 | 44 | - zlib | |
@@ -255,6 +256,14 @@ jobs: | |||
| 255 | 256 | cat temp-output | |
| 256 | 257 | tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true | |
| 257 | 258 | 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 | ||
| 258 | 267 | - id: undici | |
| 259 | 268 | subsystem: deps | |
| 260 | 269 | label: dependencies | |
| Original file line number | Diff line number | Diff 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" | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments