mirror of
https://github.com/denoland/deno.git
synced 2025-03-10 06:07:03 -04:00
ci: run Linux release builds in sysroot with Ubuntu 18.04 and LLVM (#10920)
This commit is contained in:
parent
9729dfc056
commit
822ad83b8c
5 changed files with 264 additions and 92 deletions
308
.github/workflows/ci.yml
vendored
308
.github/workflows/ci.yml
vendored
|
@ -20,39 +20,40 @@ jobs:
|
||||||
- os: windows-2019
|
- os: windows-2019
|
||||||
kind: test
|
kind: test
|
||||||
profile: release
|
profile: release
|
||||||
|
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
|
||||||
|
kind: test
|
||||||
|
profile: release
|
||||||
|
use_sysroot: true
|
||||||
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
|
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
|
||||||
kind: bench
|
kind: bench
|
||||||
profile: release
|
profile: release
|
||||||
|
use_sysroot: true
|
||||||
|
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
|
||||||
|
kind: test
|
||||||
|
profile: debug
|
||||||
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
|
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
|
||||||
kind: lint
|
kind: lint
|
||||||
profile: debug
|
profile: debug
|
||||||
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
|
|
||||||
kind: test
|
|
||||||
profile: debug
|
|
||||||
# Warning: Do not upgrade test_release to newer version of ubuntu
|
|
||||||
# runners. We need to link against older version of glibc in order to
|
|
||||||
# run on older systems. glibc in 20.04 is not compatible with 18.04.
|
|
||||||
# See #9484.
|
|
||||||
- os: ubuntu-18.04
|
|
||||||
kind: test
|
|
||||||
profile: release
|
|
||||||
|
|
||||||
# Always run main branch builds to completion. This allows the cache to
|
# Always run main branch builds to completion. This allows the cache to
|
||||||
# stay mostly up-to-date in situations where a single job fails due to
|
# stay mostly up-to-date in situations where a single job fails due to
|
||||||
# e.g. a flaky test.
|
# e.g. a flaky test.
|
||||||
# Don't fast-fail on tag build because publishing binaries shouldn't be
|
# Don't fast-fail on tag build because publishing binaries shouldn't be
|
||||||
# prevented if if any of the stages fails (which can be a false negative).
|
# prevented if if any of the stages fails (which can be a false negative).
|
||||||
fail-fast: ${{ github.event_name == 'pull_request' || (github.ref !=
|
fail-fast: ${{ github.event_name == 'pull_request' ||
|
||||||
'refs/heads/main' && !startsWith(github.ref, 'refs/tags/')) }}
|
(github.ref != 'refs/heads/main' &&
|
||||||
|
!startsWith(github.ref, 'refs/tags/')) }}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
RUST_BACKTRACE: full
|
RUST_BACKTRACE: full
|
||||||
RUSTC_FORCE_INCREMENTAL: 1
|
RUSTC_FORCE_INCREMENTAL: 1
|
||||||
CARGO_TERM_COLOR: always
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Configure git
|
- name: Configure git
|
||||||
run: git config --global core.symlinks true
|
run: |
|
||||||
|
git config --global core.symlinks true
|
||||||
|
git config --global fetch.parallel 32
|
||||||
|
|
||||||
- name: Clone repository
|
- name: Clone repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -72,9 +73,10 @@ jobs:
|
||||||
startsWith(github.ref, 'refs/tags/')
|
startsWith(github.ref, 'refs/tags/')
|
||||||
run: |
|
run: |
|
||||||
mkdir -p target/release
|
mkdir -p target/release
|
||||||
tar --exclude=.cargo_home --exclude=".git*" --exclude=target --exclude=third_party/prebuilt -czvf target/release/deno_src.tar.gz -C .. deno
|
tar --exclude=".git*" --exclude=target --exclude=third_party/prebuilt \
|
||||||
|
-czvf target/release/deno_src.tar.gz -C .. deno
|
||||||
|
|
||||||
- name: Install rust
|
- name: Install Rust
|
||||||
uses: hecrj/setup-rust-action@v1
|
uses: hecrj/setup-rust-action@v1
|
||||||
with:
|
with:
|
||||||
rust-version: 1.53.0
|
rust-version: 1.53.0
|
||||||
|
@ -86,32 +88,20 @@ jobs:
|
||||||
rustup component add rustfmt
|
rustup component add rustfmt
|
||||||
|
|
||||||
- name: Install Deno
|
- name: Install Deno
|
||||||
if: |
|
if: matrix.kind == 'lint'
|
||||||
!startsWith(matrix.os, 'windows')
|
run: |
|
||||||
run: |-
|
|
||||||
curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.7.2
|
curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.7.2
|
||||||
echo "$HOME/.deno/bin" >> $GITHUB_PATH
|
echo "$HOME/.deno/bin" >> $GITHUB_PATH
|
||||||
|
|
||||||
- name: Error on Warning
|
|
||||||
run: echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Install Deno (Windows)
|
|
||||||
if: startsWith(matrix.os, 'windows')
|
|
||||||
run: |-
|
|
||||||
curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.7.2
|
|
||||||
echo "$HOME/.deno/bin" >> $env:GITHUB_PATH
|
|
||||||
|
|
||||||
- name: Install Python
|
- name: Install Python
|
||||||
uses: actions/setup-python@v1
|
uses: actions/setup-python@v1
|
||||||
with:
|
with:
|
||||||
python-version: "3.8"
|
python-version: 3.8
|
||||||
architecture: x64
|
|
||||||
|
|
||||||
- name: Install Node
|
- name: Install Node
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
node-version: "16"
|
node-version: 16
|
||||||
check-latest: true
|
|
||||||
|
|
||||||
- name: Remove unused versions of Python
|
- name: Remove unused versions of Python
|
||||||
if: startsWith(matrix.os, 'windows')
|
if: startsWith(matrix.os, 'windows')
|
||||||
|
@ -151,23 +141,92 @@ jobs:
|
||||||
service_account_key: ${{ secrets.GCP_SA_KEY }}
|
service_account_key: ${{ secrets.GCP_SA_KEY }}
|
||||||
export_default_credentials: true
|
export_default_credentials: true
|
||||||
|
|
||||||
- name: Configure canary build
|
- name: Error on warning
|
||||||
if: |
|
# TODO(piscisaureus): enable this on Windows again.
|
||||||
matrix.kind == 'test' &&
|
if: "!matrix.use_sysroot && !startsWith(matrix.os, 'windows')"
|
||||||
matrix.profile == 'release' &&
|
run: echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV
|
||||||
github.repository == 'denoland/deno' &&
|
|
||||||
github.ref == 'refs/heads/main'
|
- name: Set up Linux sysroot with Ubuntu 18.04 and LLVM
|
||||||
shell: bash
|
if: matrix.use_sysroot
|
||||||
run: |
|
run: |
|
||||||
echo "DENO_CANARY=true" >> $GITHUB_ENV
|
sudo apt-get update
|
||||||
|
sudo apt-get install debootstrap
|
||||||
|
|
||||||
|
# Note: git, nc, strace, and time, are needed to run the benchmarks.
|
||||||
|
sudo debootstrap \
|
||||||
|
--include=ca-certificates,curl,git,netcat-openbsd,strace,time \
|
||||||
|
--no-merged-usr --variant=minbase bionic /sysroot \
|
||||||
|
http://azure.archive.ubuntu.com/ubuntu
|
||||||
|
sudo mount --rbind /dev /sysroot/dev
|
||||||
|
sudo mount --rbind /sys /sysroot/sys
|
||||||
|
sudo mount --rbind /home /sysroot/home
|
||||||
|
sudo mount -t proc /proc /sysroot/proc
|
||||||
|
|
||||||
|
sudo ln --force --target /sysroot/etc \
|
||||||
|
/etc/passwd /etc/shadow /etc/group /etc/gshadow
|
||||||
|
|
||||||
|
# Install clang-12 and lld-12 into the chroot environment.
|
||||||
|
echo "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-12 main" |
|
||||||
|
sudo dd of=/sysroot/etc/apt/sources.list.d/llvm-toolchain-bionic-12.list
|
||||||
|
curl https://apt.llvm.org/llvm-snapshot.gpg.key |
|
||||||
|
gpg --dearmor |
|
||||||
|
sudo dd of=/sysroot/etc/apt/trusted.gpg.d/llvm-snapshot.gpg
|
||||||
|
sudo chroot /sysroot apt update -y
|
||||||
|
sudo chroot /sysroot apt install --no-install-recommends -y \
|
||||||
|
clang-12 lld-12
|
||||||
|
|
||||||
|
# Make rust available inside the chroot environment.
|
||||||
|
sudo mkdir -p /sysroot/usr/share/rust
|
||||||
|
sudo mount --rbind /usr/share/rust /sysroot/usr/share/rust
|
||||||
|
|
||||||
|
# Make node (needed to run the benchmarks) available.
|
||||||
|
sudo ln --target /sysroot/usr/bin "$(which node)"
|
||||||
|
|
||||||
|
cat >> ~/.bash_profile << ___
|
||||||
|
cd "$(pwd)"
|
||||||
|
|
||||||
|
# Add cargo, rustc, and deno to $PATH.
|
||||||
|
source /usr/share/rust/.cargo/env
|
||||||
|
export PATH="$PATH:$(pwd)/target/release"
|
||||||
|
|
||||||
|
# Rust build configuration.
|
||||||
|
export CARGO_PROFILE_BENCH_INCREMENTAL=false
|
||||||
|
export CARGO_PROFILE_BENCH_LTO=false
|
||||||
|
export CARGO_PROFILE_RELEASE_INCREMENTAL=false
|
||||||
|
export CARGO_PROFILE_RELEASE_LTO=false
|
||||||
|
export RUSTFLAGS="
|
||||||
|
-C linker-plugin-lto=true
|
||||||
|
-C linker=clang-12
|
||||||
|
-C link-arg=-fuse-ld=lld-12
|
||||||
|
-C link-arg=-Wl,--thinlto-cache-dir=$(pwd)/target/release/lto-cache
|
||||||
|
-C link-arg=-Wl,--thinlto-cache-policy,cache_size_bytes=700m
|
||||||
|
-D warnings
|
||||||
|
"
|
||||||
|
export RUSTDOCFLAGS="\$RUSTFLAGS"
|
||||||
|
unset RUSTC_FORCE_INCREMENTAL
|
||||||
|
|
||||||
|
# C build configuration.
|
||||||
|
export CC=clang-12 # Compile c source files with clang.
|
||||||
|
export CCFLAGs=-flto=thin # Tell clang to produce llvm bitcode.
|
||||||
|
|
||||||
|
# Miscellaneous flags.
|
||||||
|
export CARGO_TERM_COLOR=always
|
||||||
|
export CI=true
|
||||||
|
export DENO_CANARY=true
|
||||||
|
___
|
||||||
|
|
||||||
- name: Log versions
|
- name: Log versions
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
node -v
|
node -v
|
||||||
python --version
|
python --version
|
||||||
rustc --version
|
rustc --version
|
||||||
cargo --version
|
cargo --version
|
||||||
|
# Deno is installed when linting.
|
||||||
|
if [ "${{ matrix.kind }}" == "lint" ]
|
||||||
|
then
|
||||||
deno --version
|
deno --version
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Cache Cargo home
|
- name: Cache Cargo home
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
|
@ -177,21 +236,24 @@ jobs:
|
||||||
~/.cargo/registry/index
|
~/.cargo/registry/index
|
||||||
~/.cargo/registry/cache
|
~/.cargo/registry/cache
|
||||||
~/.cargo/git/db
|
~/.cargo/git/db
|
||||||
key: a-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
|
key: z-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
|
||||||
|
|
||||||
# In main branch, always creates fresh cache
|
# In main branch, always creates fresh cache
|
||||||
- name: Cache build output (main)
|
- name: Cache build output (main)
|
||||||
# TODO(kt3k): Change the version to the released version
|
# TODO(kt3k): Change the version to the released version
|
||||||
# when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
# when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
||||||
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
||||||
if: github.ref == 'refs/heads/main'
|
if: matrix.profile == 'release' && github.ref == 'refs/heads/main'
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
./target
|
./target
|
||||||
|
!./target/*/gn_out
|
||||||
|
!./target/*/*.zip
|
||||||
|
!./target/*/*.tar.gz
|
||||||
key: |
|
key: |
|
||||||
a-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ hashFiles('Cargo.lock') }}-${{ github.sha }}
|
z-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
|
||||||
|
|
||||||
# Restores cache from the latest main branch's Cache
|
# Restore cache from the latest 'main' branch build.
|
||||||
- name: Cache build output (PR)
|
- name: Cache build output (PR)
|
||||||
# TODO(kt3k): Change the version to the released version
|
# TODO(kt3k): Change the version to the released version
|
||||||
# when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
# when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
||||||
|
@ -200,22 +262,31 @@ jobs:
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
./target
|
./target
|
||||||
key: |
|
!./target/*/gn_out
|
||||||
s0mth1ng_rand0m # Cache never be created for this key.
|
!./target/*/*.zip
|
||||||
|
!./target/*/*.tar.gz
|
||||||
|
key: never_saved
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
a-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ hashFiles('Cargo.lock') }}-
|
z-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
|
||||||
|
|
||||||
# Skips saving cache in PR branches
|
# Don't save cache after building PRs or branches other than 'main'.
|
||||||
- name: Skip save cache (PR)
|
- name: Skip save cache (PR)
|
||||||
run: echo "CACHE_SKIP_SAVE=true" >> $GITHUB_ENV
|
run: echo "CACHE_SKIP_SAVE=true" >> $GITHUB_ENV
|
||||||
shell: bash
|
shell: bash
|
||||||
if: github.ref != 'refs/heads/main'
|
if: github.ref != 'refs/heads/main'
|
||||||
|
|
||||||
- name: Apply and update mtime cache
|
- name: Apply and update mtime cache
|
||||||
|
if: matrix.profile == 'release'
|
||||||
uses: ./.github/mtime_cache
|
uses: ./.github/mtime_cache
|
||||||
with:
|
with:
|
||||||
cache-path: ./target
|
cache-path: ./target
|
||||||
|
|
||||||
|
# Shallow the cloning the crates.io index makes CI faster because it
|
||||||
|
# obviates the need for Cargo to clone the index. If we don't do this
|
||||||
|
# Cargo will `git clone` the github repository that contains the entire
|
||||||
|
# history of the crates.io index from github. We don't believe the
|
||||||
|
# identifier '1ecc6299db9ec823' will ever change, but if it does then this
|
||||||
|
# command must be updated.
|
||||||
- name: Shallow clone crates.io index
|
- name: Shallow clone crates.io index
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
@ -226,6 +297,16 @@ jobs:
|
||||||
~/.cargo/registry/index/github.com-1ecc6299db9ec823
|
~/.cargo/registry/index/github.com-1ecc6299db9ec823
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
- name: Configure canary build
|
||||||
|
if: |
|
||||||
|
matrix.kind == 'test' &&
|
||||||
|
matrix.profile == 'release' &&
|
||||||
|
!matrix.use_sysroot &&
|
||||||
|
github.repository == 'denoland/deno' &&
|
||||||
|
github.ref == 'refs/heads/main'
|
||||||
|
shell: bash
|
||||||
|
run: echo "DENO_CANARY=true" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: test_format.js
|
- name: test_format.js
|
||||||
if: matrix.kind == 'lint'
|
if: matrix.kind == 'lint'
|
||||||
run: deno run --unstable --allow-write --allow-read --allow-run ./tools/format.js --check
|
run: deno run --unstable --allow-write --allow-read --allow-run ./tools/format.js --check
|
||||||
|
@ -235,14 +316,27 @@ jobs:
|
||||||
# TODO(ry) assert matrix.profile == "debug"
|
# TODO(ry) assert matrix.profile == "debug"
|
||||||
run: deno run --unstable --allow-write --allow-read --allow-run ./tools/lint.js
|
run: deno run --unstable --allow-write --allow-read --allow-run ./tools/lint.js
|
||||||
|
|
||||||
- name: Build release
|
|
||||||
if: (matrix.kind == 'test' || matrix.kind == 'bench') && matrix.profile == 'release'
|
|
||||||
run: cargo build --release --locked --all-targets -vv
|
|
||||||
|
|
||||||
- name: Build debug
|
- name: Build debug
|
||||||
if: (matrix.kind == 'test' || matrix.kind == 'bench') && matrix.profile == 'debug'
|
if: |
|
||||||
|
(matrix.kind == 'test' || matrix.kind == 'bench') &&
|
||||||
|
matrix.profile == 'debug' && !matrix.use_sysroot
|
||||||
run: cargo build --locked --all-targets
|
run: cargo build --locked --all-targets
|
||||||
|
|
||||||
|
- name: Build release
|
||||||
|
if: |
|
||||||
|
(matrix.kind == 'test' || matrix.kind == 'bench') &&
|
||||||
|
matrix.profile == 'release' && !matrix.use_sysroot
|
||||||
|
run: cargo build --release --locked --all-targets
|
||||||
|
|
||||||
|
- name: Build release (in sysroot)
|
||||||
|
if: |
|
||||||
|
(matrix.kind == 'test' || matrix.kind == 'bench') &&
|
||||||
|
matrix.profile == 'release' && matrix.use_sysroot
|
||||||
|
run: |
|
||||||
|
sudo chroot /sysroot \
|
||||||
|
su -l "$(whoami)" \
|
||||||
|
-c "cargo build --release --locked --all-targets"
|
||||||
|
|
||||||
- name: Pre-release (linux)
|
- name: Pre-release (linux)
|
||||||
if: |
|
if: |
|
||||||
startsWith(matrix.os, 'ubuntu') &&
|
startsWith(matrix.os, 'ubuntu') &&
|
||||||
|
@ -297,28 +391,66 @@ jobs:
|
||||||
echo $(git rev-parse HEAD) > canary-latest.txt
|
echo $(git rev-parse HEAD) > canary-latest.txt
|
||||||
gsutil cp canary-latest.txt gs://dl.deno.land/canary-latest.txt
|
gsutil cp canary-latest.txt gs://dl.deno.land/canary-latest.txt
|
||||||
|
|
||||||
- name: Test release
|
|
||||||
if: matrix.kind == 'test' && matrix.profile == 'release'
|
|
||||||
run: cargo test --release --locked --all-targets
|
|
||||||
|
|
||||||
- name: Test debug
|
- name: Test debug
|
||||||
if: matrix.kind == 'test' && matrix.profile == 'debug'
|
if: |
|
||||||
|
matrix.kind == 'test' && matrix.profile == 'debug' &&
|
||||||
|
!matrix.use_sysroot
|
||||||
run: |
|
run: |
|
||||||
cargo test --locked --doc
|
cargo test --locked --doc
|
||||||
cargo test --locked --all-targets
|
cargo test --locked
|
||||||
|
|
||||||
# TODO(ry) Because CI is so slow on for OSX and Windows, we currently only run WPT on Linux.
|
- name: Test release
|
||||||
- name: Configure hosts file for WPT (linux)
|
if: |
|
||||||
if: startsWith(matrix.os, 'ubuntu')
|
matrix.kind == 'test' && matrix.profile == 'release' &&
|
||||||
|
!matrix.use_sysroot
|
||||||
|
run: cargo test --release --locked
|
||||||
|
|
||||||
|
- name: Test release (in sysroot)
|
||||||
|
if: |
|
||||||
|
matrix.kind == 'test' && matrix.profile == 'release' &&
|
||||||
|
matrix.use_sysroot
|
||||||
|
run: |
|
||||||
|
sudo chroot /sysroot \
|
||||||
|
su -l "$(whoami)" \
|
||||||
|
-c "cargo test --release --locked"
|
||||||
|
|
||||||
|
# TODO(ry): Because CI is so slow on for OSX and Windows, we currently
|
||||||
|
# run the Web Platform tests only on Linux.
|
||||||
|
- name: Configure hosts file for WPT
|
||||||
|
if: startsWith(matrix.os, 'ubuntu') && matrix.kind == 'test'
|
||||||
run: ./wpt make-hosts-file | sudo tee -a /etc/hosts
|
run: ./wpt make-hosts-file | sudo tee -a /etc/hosts
|
||||||
working-directory: test_util/wpt/
|
working-directory: test_util/wpt/
|
||||||
|
|
||||||
- name: Run web platform tests (release)
|
- name: Run web platform tests (debug)
|
||||||
if: startsWith(matrix.os, 'ubuntu') && matrix.kind == 'test' && matrix.profile == 'release'
|
if: |
|
||||||
|
startsWith(matrix.os, 'ubuntu') && matrix.kind == 'test' &&
|
||||||
|
matrix.profile == 'debug'
|
||||||
|
env:
|
||||||
|
DENO_BIN: ./target/debug/deno
|
||||||
run: |
|
run: |
|
||||||
deno run --unstable --allow-write --allow-read --allow-net --allow-env --allow-run ./tools/wpt.ts setup
|
"$DENO_BIN" run --allow-env --allow-net --allow-read --allow-run \
|
||||||
deno run --unstable --allow-write --allow-read --allow-net --allow-env --allow-run ./tools/wpt.ts run --quiet --release --json=wpt.json --wptreport=wptreport.json
|
--allow-write --unstable \
|
||||||
gzip ./wptreport.json
|
./tools/wpt.ts setup
|
||||||
|
"$DENO_BIN" run --allow-env --allow-net --allow-read --allow-run \
|
||||||
|
--allow-write --unstable \
|
||||||
|
./tools/wpt.ts run --quiet --binary="$DENO_BIN"
|
||||||
|
|
||||||
|
- name: Run web platform tests (release)
|
||||||
|
if: |
|
||||||
|
startsWith(matrix.os, 'ubuntu') && matrix.kind == 'test' &&
|
||||||
|
matrix.profile == 'release'
|
||||||
|
env:
|
||||||
|
DENO_BIN: ./target/release/deno
|
||||||
|
run: |
|
||||||
|
"$DENO_BIN" run --allow-env --allow-net --allow-read --allow-run \
|
||||||
|
--allow-write --unstable \
|
||||||
|
./tools/wpt.ts setup
|
||||||
|
"$DENO_BIN" run --allow-env --allow-net --allow-read --allow-run \
|
||||||
|
--allow-write --unstable \
|
||||||
|
./tools/wpt.ts run --quiet --release \
|
||||||
|
--binary="$DENO_BIN" \
|
||||||
|
--json=wpt.json \
|
||||||
|
--wptreport=wptreport.json
|
||||||
|
|
||||||
- name: Upload wpt results to dl.deno.land
|
- name: Upload wpt results to dl.deno.land
|
||||||
if: |
|
if: |
|
||||||
|
@ -328,6 +460,7 @@ jobs:
|
||||||
github.repository == 'denoland/deno' &&
|
github.repository == 'denoland/deno' &&
|
||||||
github.ref == 'refs/heads/main'
|
github.ref == 'refs/heads/main'
|
||||||
run: |
|
run: |
|
||||||
|
gzip ./wptreport.json
|
||||||
gsutil cp ./wpt.json gs://dl.deno.land/wpt/$(git rev-parse HEAD).json
|
gsutil cp ./wpt.json gs://dl.deno.land/wpt/$(git rev-parse HEAD).json
|
||||||
gsutil cp ./wptreport.json.gz gs://dl.deno.land/wpt/$(git rev-parse HEAD)-wptreport.json.gz
|
gsutil cp ./wptreport.json.gz gs://dl.deno.land/wpt/$(git rev-parse HEAD)-wptreport.json.gz
|
||||||
echo $(git rev-parse HEAD) > wpt-latest.txt
|
echo $(git rev-parse HEAD) > wpt-latest.txt
|
||||||
|
@ -345,17 +478,19 @@ jobs:
|
||||||
WPT_FYI_STAGING_PW: ${{ secrets.WPT_FYI_STAGING_PW }}
|
WPT_FYI_STAGING_PW: ${{ secrets.WPT_FYI_STAGING_PW }}
|
||||||
GITHUB_TOKEN: ${{ secrets.DENOBOT_PAT }}
|
GITHUB_TOKEN: ${{ secrets.DENOBOT_PAT }}
|
||||||
run: |
|
run: |
|
||||||
deno run -A ./tools/upload_wptfyi.js $(git rev-parse HEAD) --ghstatus
|
./target/release/deno run --allow-all \
|
||||||
|
./tools/upload_wptfyi.js $(git rev-parse HEAD) --ghstatus
|
||||||
|
|
||||||
- name: Run web platform tests (debug)
|
- name: Run benchmarks
|
||||||
if: startsWith(matrix.os, 'ubuntu') && matrix.kind == 'test' && matrix.profile == 'debug'
|
if: matrix.kind == 'bench' && !matrix.use_sysroot
|
||||||
|
run: cargo bench --locked
|
||||||
|
|
||||||
|
- name: Run benchmarks (in sysroot)
|
||||||
|
if: matrix.kind == 'bench' && matrix.use_sysroot
|
||||||
run: |
|
run: |
|
||||||
deno run --unstable --allow-write --allow-read --allow-net --allow-env --allow-run ./tools/wpt.ts setup
|
sudo chroot /sysroot \
|
||||||
deno run --unstable --allow-write --allow-read --allow-net --allow-env --allow-run ./tools/wpt.ts run --quiet
|
su -l "$(whoami)" \
|
||||||
|
-c "cargo bench --locked"
|
||||||
- name: Run Benchmarks
|
|
||||||
if: matrix.kind == 'bench'
|
|
||||||
run: cargo bench
|
|
||||||
|
|
||||||
- name: Post Benchmarks
|
- name: Post Benchmarks
|
||||||
if: |
|
if: |
|
||||||
|
@ -365,8 +500,11 @@ jobs:
|
||||||
env:
|
env:
|
||||||
DENOBOT_PAT: ${{ secrets.DENOBOT_PAT }}
|
DENOBOT_PAT: ${{ secrets.DENOBOT_PAT }}
|
||||||
run: |
|
run: |
|
||||||
git clone --depth 1 -b gh-pages https://${DENOBOT_PAT}@github.com/denoland/benchmark_data.git gh-pages
|
git clone --depth 1 --branch gh_pages \
|
||||||
deno run --unstable -A ./tools/build_benchmark_jsons.js --release
|
https://${DENOBOT_PAT}@github.com/denoland/benchmark_data.git \
|
||||||
|
gh-pages
|
||||||
|
./target/release/deno run --allow-all --unstable \
|
||||||
|
./tools/build_benchmark_jsons.js --release
|
||||||
cd gh-pages
|
cd gh-pages
|
||||||
git config user.email "propelml@gmail.com"
|
git config user.email "propelml@gmail.com"
|
||||||
git config user.name "denobot"
|
git config user.name "denobot"
|
||||||
|
@ -374,6 +512,12 @@ jobs:
|
||||||
git commit --message "Update benchmarks"
|
git commit --message "Update benchmarks"
|
||||||
git push origin gh-pages
|
git push origin gh-pages
|
||||||
|
|
||||||
|
- name: Build product size info
|
||||||
|
if: matrix.kind != 'lint'
|
||||||
|
run: |
|
||||||
|
du -hd1 "./target/${{ matrix.profile }}"
|
||||||
|
du -ha "./target/${{ matrix.profile }}/deno"
|
||||||
|
|
||||||
- name: Worker info
|
- name: Worker info
|
||||||
if: matrix.kind == 'bench'
|
if: matrix.kind == 'bench'
|
||||||
run: |
|
run: |
|
||||||
|
@ -424,11 +568,3 @@ jobs:
|
||||||
target/release/deno_src.tar.gz
|
target/release/deno_src.tar.gz
|
||||||
target/release/lib.deno.d.ts
|
target/release/lib.deno.d.ts
|
||||||
draft: true
|
draft: true
|
||||||
|
|
||||||
- name: Clean before cache
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
rm -f target/*/deno target/*/test_server
|
|
||||||
rm -rf target/*/examples/
|
|
||||||
rm -rf target/*/gn_out/
|
|
||||||
rm -rf target/*/*.zip
|
|
||||||
|
|
29
Cargo.toml
29
Cargo.toml
|
@ -22,19 +22,46 @@ members = [
|
||||||
]
|
]
|
||||||
exclude = ["test_util/std/hash/_wasm"]
|
exclude = ["test_util/std/hash/_wasm"]
|
||||||
|
|
||||||
|
# NB: the `bench` and `release` profiles must remain EXACTLY the same.
|
||||||
[profile.release]
|
[profile.release]
|
||||||
codegen-units = 1
|
codegen-units = 1
|
||||||
incremental = true
|
incremental = true
|
||||||
lto = true
|
lto = true
|
||||||
opt-level = 'z' # Optimize for size
|
opt-level = 'z' # Optimize for size
|
||||||
|
|
||||||
|
# NB: the `bench` and `release` profiles must remain EXACTLY the same.
|
||||||
[profile.bench]
|
[profile.bench]
|
||||||
codegen-units = 1
|
codegen-units = 1
|
||||||
incremental = true
|
incremental = true
|
||||||
lto = true
|
lto = true
|
||||||
opt-level = 'z' # Optimize for size
|
opt-level = 'z' # Optimize for size
|
||||||
|
|
||||||
# Optimize these packages for perf
|
# Optimize these packages for performance.
|
||||||
|
# NB: the `bench` and `release` profiles must remain EXACTLY the same.
|
||||||
|
[profile.bench.package.rand]
|
||||||
|
opt-level = 3
|
||||||
|
[profile.bench.package.flate2]
|
||||||
|
opt-level = 3
|
||||||
|
[profile.bench.package.brotli]
|
||||||
|
opt-level = 3
|
||||||
|
[profile.bench.package.miniz_oxide]
|
||||||
|
opt-level = 3
|
||||||
|
[profile.bench.package.async-compression]
|
||||||
|
opt-level = 3
|
||||||
|
[profile.bench.package.brotli-decompressor]
|
||||||
|
opt-level = 3
|
||||||
|
[profile.bench.package.deno_core]
|
||||||
|
opt-level = 3
|
||||||
|
[profile.bench.package.deno_runtime]
|
||||||
|
opt-level = 3
|
||||||
|
[profile.bench.package.rusty_v8]
|
||||||
|
opt-level = 3
|
||||||
|
[profile.bench.package.serde_v8]
|
||||||
|
opt-level = 3
|
||||||
|
[profile.bench.package.serde]
|
||||||
|
opt-level = 3
|
||||||
|
|
||||||
|
# NB: the `bench` and `release` profiles must remain EXACTLY the same.
|
||||||
[profile.release.package.rand]
|
[profile.release.package.rand]
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
[profile.release.package.flate2]
|
[profile.release.package.flate2]
|
||||||
|
|
|
@ -12,7 +12,11 @@ for await (const conn of listener) {
|
||||||
(async () => {
|
(async () => {
|
||||||
const requests = Deno.serveHttp(conn);
|
const requests = Deno.serveHttp(conn);
|
||||||
for await (const { respondWith } of requests) {
|
for await (const { respondWith } of requests) {
|
||||||
|
try {
|
||||||
respondWith(new Response(body));
|
respondWith(new Response(body));
|
||||||
|
} catch {
|
||||||
|
// Ignore.
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
}
|
}
|
||||||
|
|
|
@ -340,10 +340,10 @@ fn run_strace_benchmarks(
|
||||||
let mut thread_count = HashMap::<String, u64>::new();
|
let mut thread_count = HashMap::<String, u64>::new();
|
||||||
let mut syscall_count = HashMap::<String, u64>::new();
|
let mut syscall_count = HashMap::<String, u64>::new();
|
||||||
|
|
||||||
for (name, args, _) in EXEC_TIME_BENCHMARKS {
|
for (name, args, expected_exit_code) in EXEC_TIME_BENCHMARKS {
|
||||||
let mut file = tempfile::NamedTempFile::new()?;
|
let mut file = tempfile::NamedTempFile::new()?;
|
||||||
|
|
||||||
Command::new("strace")
|
let exit_status = Command::new("strace")
|
||||||
.args(&[
|
.args(&[
|
||||||
"-c",
|
"-c",
|
||||||
"-f",
|
"-f",
|
||||||
|
@ -352,9 +352,11 @@ fn run_strace_benchmarks(
|
||||||
deno_exe.to_str().unwrap(),
|
deno_exe.to_str().unwrap(),
|
||||||
])
|
])
|
||||||
.args(args.iter())
|
.args(args.iter())
|
||||||
.stdout(Stdio::inherit())
|
.stdout(Stdio::null())
|
||||||
.spawn()?
|
.spawn()?
|
||||||
.wait()?;
|
.wait()?;
|
||||||
|
let expected_exit_code = expected_exit_code.unwrap_or(0);
|
||||||
|
assert_eq!(exit_status.code(), Some(expected_exit_code));
|
||||||
|
|
||||||
let mut output = String::new();
|
let mut output = String::new();
|
||||||
file.as_file_mut().read_to_string(&mut output)?;
|
file.as_file_mut().read_to_string(&mut output)?;
|
||||||
|
|
|
@ -814,7 +814,10 @@ mod tests {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This test is disabled because it uses the `deno` binary found in `$PATH`.
|
||||||
|
// It should use the one located in `./target/{debug|release}/`.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[ignore]
|
||||||
fn install_unicode() {
|
fn install_unicode() {
|
||||||
let temp_dir = TempDir::new().expect("tempdir fail");
|
let temp_dir = TempDir::new().expect("tempdir fail");
|
||||||
let bin_dir = temp_dir.path().join("bin");
|
let bin_dir = temp_dir.path().join("bin");
|
||||||
|
|
Loading…
Add table
Reference in a new issue