2019-10-29 17:07:15 -04:00
|
|
|
name: ci
|
2019-09-18 17:23:27 -04:00
|
|
|
|
2019-09-18 19:37:31 -04:00
|
|
|
on: [push, pull_request]
|
2019-09-18 17:23:27 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-04-23 12:54:23 -04:00
|
|
|
name: ${{ matrix.kind }} ${{ matrix.profile }} ${{ matrix.os }}
|
2020-03-22 19:21:31 -04:00
|
|
|
if: |
|
|
|
|
github.event_name == 'push' ||
|
|
|
|
!startsWith(github.event.pull_request.head.label, 'denoland:')
|
2020-09-26 10:13:59 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-03-09 14:15:23 -05:00
|
|
|
timeout-minutes: 90
|
2019-09-18 17:23:27 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-09-26 10:13:59 -04:00
|
|
|
include:
|
2021-04-23 12:54:23 -04:00
|
|
|
# TODO(ry) Rename 'kind' to 'job'?
|
2020-07-26 16:24:32 -04:00
|
|
|
- os: macos-10.15
|
2021-04-23 12:54:23 -04:00
|
|
|
kind: test
|
|
|
|
profile: release
|
2019-10-24 17:56:14 -04:00
|
|
|
- os: windows-2019
|
2021-04-23 12:54:23 -04:00
|
|
|
kind: test
|
|
|
|
profile: release
|
2021-05-11 18:06:58 -04:00
|
|
|
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
|
|
|
|
kind: test
|
|
|
|
profile: release
|
|
|
|
use_sysroot: true
|
2021-02-12 16:10:24 -05:00
|
|
|
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
|
2020-03-22 19:21:31 -04:00
|
|
|
kind: bench
|
2021-04-23 12:54:23 -04:00
|
|
|
profile: release
|
2021-05-11 18:06:58 -04:00
|
|
|
use_sysroot: true
|
2021-04-23 12:11:23 -04:00
|
|
|
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
|
2021-05-11 18:06:58 -04:00
|
|
|
kind: test
|
2021-04-23 12:54:23 -04:00
|
|
|
profile: debug
|
2021-04-23 12:11:23 -04:00
|
|
|
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-latest' }}
|
2021-05-11 18:06:58 -04:00
|
|
|
kind: lint
|
2021-04-23 12:54:23 -04:00
|
|
|
profile: debug
|
2020-03-17 20:06:40 -04:00
|
|
|
|
2021-02-19 09:58:19 -05:00
|
|
|
# Always run main branch builds to completion. This allows the cache to
|
2020-03-21 16:15:46 -04:00
|
|
|
# stay mostly up-to-date in situations where a single job fails due to
|
|
|
|
# e.g. a flaky test.
|
2020-05-10 12:39:27 -04:00
|
|
|
# Don't fast-fail on tag build because publishing binaries shouldn't be
|
2021-02-09 10:08:10 -05:00
|
|
|
# prevented if if any of the stages fails (which can be a false negative).
|
2021-05-11 18:06:58 -04:00
|
|
|
fail-fast: ${{ github.event_name == 'pull_request' ||
|
|
|
|
(github.ref != 'refs/heads/main' &&
|
|
|
|
!startsWith(github.ref, 'refs/tags/')) }}
|
2020-03-21 16:15:46 -04:00
|
|
|
|
2020-03-17 20:06:40 -04:00
|
|
|
env:
|
2021-05-11 18:06:58 -04:00
|
|
|
CARGO_TERM_COLOR: always
|
2020-03-17 20:06:40 -04:00
|
|
|
RUST_BACKTRACE: full
|
2021-05-12 11:41:21 -04:00
|
|
|
RUSTC_FORCE_INCREMENTAL: 1
|
2020-03-17 20:06:40 -04:00
|
|
|
|
2019-09-18 17:23:27 -04:00
|
|
|
steps:
|
|
|
|
- name: Configure git
|
2021-05-11 18:06:58 -04:00
|
|
|
run: |
|
|
|
|
git config --global core.symlinks true
|
|
|
|
git config --global fetch.parallel 32
|
2019-09-18 17:23:27 -04:00
|
|
|
|
|
|
|
- name: Clone repository
|
2020-05-26 23:04:38 -04:00
|
|
|
uses: actions/checkout@v2
|
2019-09-18 17:23:27 -04:00
|
|
|
with:
|
2021-04-10 02:21:27 -04:00
|
|
|
# Use depth > 1, because sometimes we need to rebuild main and if
|
|
|
|
# other commits have landed it will become impossible to rebuild if
|
|
|
|
# the checkout is too shallow.
|
|
|
|
fetch-depth: 5
|
2021-04-10 02:46:27 -04:00
|
|
|
submodules: recursive
|
2019-09-18 17:23:27 -04:00
|
|
|
|
2019-10-25 15:29:17 -04:00
|
|
|
- name: Create source tarballs (release, linux)
|
2020-05-08 13:28:49 -04:00
|
|
|
if: |
|
2020-09-26 10:13:59 -04:00
|
|
|
startsWith(matrix.os, 'ubuntu') &&
|
2021-04-23 12:54:23 -04:00
|
|
|
matrix.profile == 'release' &&
|
|
|
|
matrix.kind == 'test' &&
|
2020-05-08 13:28:49 -04:00
|
|
|
github.repository == 'denoland/deno' &&
|
2021-02-02 06:05:46 -05:00
|
|
|
startsWith(github.ref, 'refs/tags/')
|
2019-10-25 15:29:17 -04:00
|
|
|
run: |
|
|
|
|
mkdir -p target/release
|
2021-05-11 18:06:58 -04:00
|
|
|
tar --exclude=".git*" --exclude=target --exclude=third_party/prebuilt \
|
|
|
|
-czvf target/release/deno_src.tar.gz -C .. deno
|
2020-03-18 09:59:10 -04:00
|
|
|
|
2021-05-11 18:06:58 -04:00
|
|
|
- name: Install Rust
|
2019-09-18 17:23:27 -04:00
|
|
|
uses: hecrj/setup-rust-action@v1
|
|
|
|
with:
|
2021-06-17 15:56:30 -04:00
|
|
|
rust-version: 1.53.0
|
2019-09-18 17:23:27 -04:00
|
|
|
|
2019-10-05 03:17:18 -04:00
|
|
|
- name: Install clippy and rustfmt
|
2020-09-26 10:13:59 -04:00
|
|
|
if: matrix.kind == 'lint'
|
2019-10-05 03:17:18 -04:00
|
|
|
run: |
|
|
|
|
rustup component add clippy
|
|
|
|
rustup component add rustfmt
|
|
|
|
|
2020-11-05 09:53:21 -05:00
|
|
|
- name: Install Deno
|
2021-05-11 18:06:58 -04:00
|
|
|
if: matrix.kind == 'lint'
|
|
|
|
run: |
|
2021-02-09 10:08:10 -05:00
|
|
|
curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.7.2
|
2020-11-05 09:53:21 -05:00
|
|
|
echo "$HOME/.deno/bin" >> $GITHUB_PATH
|
|
|
|
|
2021-01-02 23:19:46 -05:00
|
|
|
- name: Install Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
2021-05-11 18:06:58 -04:00
|
|
|
python-version: 3.8
|
2021-01-02 23:19:46 -05:00
|
|
|
|
2020-12-26 08:02:37 -05:00
|
|
|
- name: Install Node
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
2021-05-11 18:06:58 -04:00
|
|
|
node-version: 16
|
2020-12-26 08:02:37 -05:00
|
|
|
|
2021-01-02 23:19:46 -05:00
|
|
|
- name: Remove unused versions of Python
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
run: |-
|
|
|
|
$env:PATH -split ";" |
|
|
|
|
Where-Object { Test-Path "$_\python.exe" } |
|
|
|
|
Select-Object -Skip 1 |
|
|
|
|
ForEach-Object { Move-Item "$_" "$_.disabled" }
|
|
|
|
|
2020-11-23 12:06:47 -05:00
|
|
|
- name: Setup gcloud (unix)
|
|
|
|
if: |
|
|
|
|
runner.os != 'Windows' &&
|
2021-04-23 12:54:23 -04:00
|
|
|
matrix.profile == 'release' &&
|
|
|
|
matrix.kind == 'test' &&
|
2020-11-23 12:06:47 -05:00
|
|
|
github.repository == 'denoland/deno' &&
|
2021-02-19 09:58:19 -05:00
|
|
|
(github.ref == 'refs/heads/main' ||
|
2021-02-05 14:33:21 -05:00
|
|
|
startsWith(github.ref, 'refs/tags/'))
|
2020-11-23 12:06:47 -05:00
|
|
|
uses: google-github-actions/setup-gcloud@master
|
|
|
|
with:
|
|
|
|
project_id: denoland
|
|
|
|
service_account_key: ${{ secrets.GCP_SA_KEY }}
|
|
|
|
export_default_credentials: true
|
|
|
|
|
|
|
|
- name: Setup gcloud (windows)
|
|
|
|
if: |
|
|
|
|
runner.os == 'Windows' &&
|
2021-04-23 12:54:23 -04:00
|
|
|
matrix.kind == 'test' &&
|
|
|
|
matrix.profile == 'release' &&
|
2020-11-23 12:06:47 -05:00
|
|
|
github.repository == 'denoland/deno' &&
|
2021-02-19 09:58:19 -05:00
|
|
|
(github.ref == 'refs/heads/main' ||
|
2021-02-05 14:33:21 -05:00
|
|
|
startsWith(github.ref, 'refs/tags/'))
|
2020-11-23 12:06:47 -05:00
|
|
|
uses: google-github-actions/setup-gcloud@master
|
|
|
|
env:
|
|
|
|
CLOUDSDK_PYTHON: ${{env.pythonLocation}}\python.exe
|
|
|
|
with:
|
|
|
|
project_id: denoland
|
|
|
|
service_account_key: ${{ secrets.GCP_SA_KEY }}
|
|
|
|
export_default_credentials: true
|
|
|
|
|
2021-05-11 18:06:58 -04:00
|
|
|
- name: Error on warning
|
|
|
|
# TODO(piscisaureus): enable this on Windows again.
|
|
|
|
if: "!matrix.use_sysroot && !startsWith(matrix.os, 'windows')"
|
|
|
|
run: echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Set up Linux sysroot with Ubuntu 18.04 and LLVM
|
|
|
|
if: matrix.use_sysroot
|
2020-11-25 05:30:14 -05:00
|
|
|
run: |
|
2021-05-11 18:06:58 -04:00
|
|
|
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
|
|
|
|
___
|
2020-11-25 05:30:14 -05:00
|
|
|
|
2019-09-18 17:23:27 -04:00
|
|
|
- name: Log versions
|
2021-05-11 18:06:58 -04:00
|
|
|
shell: bash
|
2019-09-18 17:23:27 -04:00
|
|
|
run: |
|
|
|
|
node -v
|
|
|
|
python --version
|
|
|
|
rustc --version
|
|
|
|
cargo --version
|
2021-05-11 18:06:58 -04:00
|
|
|
# Deno is installed when linting.
|
|
|
|
if [ "${{ matrix.kind }}" == "lint" ]
|
|
|
|
then
|
|
|
|
deno --version
|
|
|
|
fi
|
2019-09-18 17:23:27 -04:00
|
|
|
|
2021-04-22 07:17:00 -04:00
|
|
|
- name: Cache Cargo home
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
# See https://doc.rust-lang.org/cargo/guide/cargo-home.html#caching-the-cargo-home-in-ci
|
|
|
|
path: |
|
|
|
|
~/.cargo/registry/index
|
|
|
|
~/.cargo/registry/cache
|
|
|
|
~/.cargo/git/db
|
2021-05-11 18:06:58 -04:00
|
|
|
key: z-cargo-home-${{ matrix.os }}-${{ hashFiles('Cargo.lock') }}
|
2021-04-22 07:17:00 -04:00
|
|
|
|
2021-05-10 21:46:41 -04:00
|
|
|
# In main branch, always creates fresh cache
|
|
|
|
- name: Cache build output (main)
|
|
|
|
# TODO(kt3k): Change the version to the released version
|
|
|
|
# when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
|
|
|
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
2021-05-11 18:06:58 -04:00
|
|
|
if: matrix.profile == 'release' && github.ref == 'refs/heads/main'
|
2021-04-10 02:46:27 -04:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
./target
|
2021-05-11 18:06:58 -04:00
|
|
|
!./target/*/gn_out
|
|
|
|
!./target/*/*.zip
|
|
|
|
!./target/*/*.tar.gz
|
2021-05-10 21:46:41 -04:00
|
|
|
key: |
|
2021-05-11 18:06:58 -04:00
|
|
|
z-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-${{ github.sha }}
|
2021-05-10 21:46:41 -04:00
|
|
|
|
2021-05-11 18:06:58 -04:00
|
|
|
# Restore cache from the latest 'main' branch build.
|
2021-05-10 21:46:41 -04:00
|
|
|
- name: Cache build output (PR)
|
|
|
|
# TODO(kt3k): Change the version to the released version
|
|
|
|
# when https://github.com/actions/cache/pull/489 (or 571) is merged.
|
|
|
|
uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b
|
|
|
|
if: github.ref != 'refs/heads/main'
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
./target
|
2021-05-11 18:06:58 -04:00
|
|
|
!./target/*/gn_out
|
|
|
|
!./target/*/*.zip
|
|
|
|
!./target/*/*.tar.gz
|
|
|
|
key: never_saved
|
2021-05-10 21:46:41 -04:00
|
|
|
restore-keys: |
|
2021-05-11 18:06:58 -04:00
|
|
|
z-cargo-target-${{ matrix.os }}-${{ matrix.profile }}-
|
2021-05-10 21:46:41 -04:00
|
|
|
|
2021-05-11 18:06:58 -04:00
|
|
|
# Don't save cache after building PRs or branches other than 'main'.
|
2021-05-10 21:46:41 -04:00
|
|
|
- name: Skip save cache (PR)
|
|
|
|
run: echo "CACHE_SKIP_SAVE=true" >> $GITHUB_ENV
|
2021-05-19 10:48:38 -04:00
|
|
|
shell: bash
|
2021-05-10 21:46:41 -04:00
|
|
|
if: github.ref != 'refs/heads/main'
|
2021-04-10 02:46:27 -04:00
|
|
|
|
|
|
|
- name: Apply and update mtime cache
|
2021-05-11 18:06:58 -04:00
|
|
|
if: matrix.profile == 'release'
|
2021-04-10 02:46:27 -04:00
|
|
|
uses: ./.github/mtime_cache
|
|
|
|
with:
|
|
|
|
cache-path: ./target
|
|
|
|
|
2021-05-11 18:06:58 -04:00
|
|
|
# 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.
|
2021-06-23 11:02:54 -04:00
|
|
|
- name: Shallow clone crates.io index
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
if [ ! -d ~/.cargo/registry/index/github.com-1ecc6299db9ec823/.git ]
|
|
|
|
then
|
|
|
|
git clone --depth 1 --no-checkout \
|
|
|
|
https://github.com/rust-lang/crates.io-index \
|
|
|
|
~/.cargo/registry/index/github.com-1ecc6299db9ec823
|
|
|
|
fi
|
|
|
|
|
2021-05-11 18:06:58 -04:00
|
|
|
- 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
|
|
|
|
|
2020-11-05 09:53:21 -05:00
|
|
|
- name: test_format.js
|
2020-09-26 10:13:59 -04:00
|
|
|
if: matrix.kind == 'lint'
|
2020-11-05 09:53:21 -05:00
|
|
|
run: deno run --unstable --allow-write --allow-read --allow-run ./tools/format.js --check
|
2019-10-05 03:17:18 -04:00
|
|
|
|
2021-03-05 07:36:00 -05:00
|
|
|
- name: lint.js
|
|
|
|
if: matrix.kind == 'lint'
|
2021-04-23 12:54:23 -04:00
|
|
|
# TODO(ry) assert matrix.profile == "debug"
|
2021-03-05 07:36:00 -05:00
|
|
|
run: deno run --unstable --allow-write --allow-read --allow-run ./tools/lint.js
|
|
|
|
|
2020-03-18 09:59:10 -04:00
|
|
|
- name: Build debug
|
2021-05-11 18:06:58 -04:00
|
|
|
if: |
|
|
|
|
(matrix.kind == 'test' || matrix.kind == 'bench') &&
|
|
|
|
matrix.profile == 'debug' && !matrix.use_sysroot
|
2021-04-28 21:33:46 -04:00
|
|
|
run: cargo build --locked --all-targets
|
2020-03-18 09:59:10 -04:00
|
|
|
|
2021-05-11 18:06:58 -04:00
|
|
|
- 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"
|
|
|
|
|
2019-10-03 13:20:59 -04:00
|
|
|
- name: Pre-release (linux)
|
2020-05-08 13:28:49 -04:00
|
|
|
if: |
|
2020-09-26 10:13:59 -04:00
|
|
|
startsWith(matrix.os, 'ubuntu') &&
|
2021-04-23 12:54:23 -04:00
|
|
|
matrix.kind == 'test' &&
|
|
|
|
matrix.profile == 'release'
|
2020-03-22 19:21:31 -04:00
|
|
|
run: |
|
|
|
|
cd target/release
|
|
|
|
zip -r deno-x86_64-unknown-linux-gnu.zip deno
|
2020-04-02 11:56:09 -04:00
|
|
|
./deno types > lib.deno.d.ts
|
2019-10-03 13:20:59 -04:00
|
|
|
|
|
|
|
- name: Pre-release (mac)
|
2020-05-08 13:28:49 -04:00
|
|
|
if: |
|
2020-09-26 10:13:59 -04:00
|
|
|
startsWith(matrix.os, 'macOS') &&
|
2021-04-23 12:54:23 -04:00
|
|
|
matrix.kind == 'test' &&
|
|
|
|
matrix.profile == 'release'
|
2020-03-22 19:21:31 -04:00
|
|
|
run: |
|
|
|
|
cd target/release
|
|
|
|
zip -r deno-x86_64-apple-darwin.zip deno
|
2019-10-03 13:20:59 -04:00
|
|
|
|
|
|
|
- name: Pre-release (windows)
|
2020-05-08 13:28:49 -04:00
|
|
|
if: |
|
2020-09-26 10:13:59 -04:00
|
|
|
startsWith(matrix.os, 'windows') &&
|
2021-04-23 12:54:23 -04:00
|
|
|
matrix.kind == 'test' &&
|
|
|
|
matrix.profile == 'release'
|
2020-03-22 19:21:31 -04:00
|
|
|
run: |
|
|
|
|
Compress-Archive -CompressionLevel Optimal -Force -Path target/release/deno.exe -DestinationPath target/release/deno-x86_64-pc-windows-msvc.zip
|
2019-10-03 13:20:59 -04:00
|
|
|
|
2021-01-14 11:08:30 -05:00
|
|
|
- name: Upload canary to dl.deno.land (unix)
|
2020-11-23 12:06:47 -05:00
|
|
|
if: |
|
|
|
|
runner.os != 'Windows' &&
|
2021-04-23 12:54:23 -04:00
|
|
|
matrix.kind == 'test' &&
|
|
|
|
matrix.profile == 'release' &&
|
2020-11-23 12:06:47 -05:00
|
|
|
github.repository == 'denoland/deno' &&
|
2021-02-19 09:58:19 -05:00
|
|
|
github.ref == 'refs/heads/main'
|
2020-11-23 12:06:47 -05:00
|
|
|
run: |
|
|
|
|
gsutil cp ./target/release/*.zip gs://dl.deno.land/canary/$(git rev-parse HEAD)/
|
|
|
|
echo $(git rev-parse HEAD) > canary-latest.txt
|
|
|
|
gsutil cp canary-latest.txt gs://dl.deno.land/canary-latest.txt
|
|
|
|
|
2021-01-14 11:08:30 -05:00
|
|
|
- name: Upload canary to dl.deno.land (windows)
|
2020-11-23 12:06:47 -05:00
|
|
|
if: |
|
|
|
|
runner.os == 'Windows' &&
|
2021-04-23 12:54:23 -04:00
|
|
|
matrix.kind == 'test' &&
|
|
|
|
matrix.profile == 'release' &&
|
2020-11-23 12:06:47 -05:00
|
|
|
github.repository == 'denoland/deno' &&
|
2021-02-19 09:58:19 -05:00
|
|
|
github.ref == 'refs/heads/main'
|
2020-11-23 12:06:47 -05:00
|
|
|
env:
|
|
|
|
CLOUDSDK_PYTHON: ${{env.pythonLocation}}\python.exe
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
gsutil cp ./target/release/*.zip gs://dl.deno.land/canary/$(git rev-parse HEAD)/
|
|
|
|
echo $(git rev-parse HEAD) > canary-latest.txt
|
|
|
|
gsutil cp canary-latest.txt gs://dl.deno.land/canary-latest.txt
|
|
|
|
|
2020-12-02 14:06:19 -05:00
|
|
|
- name: Test debug
|
2021-05-11 18:06:58 -04:00
|
|
|
if: |
|
|
|
|
matrix.kind == 'test' && matrix.profile == 'debug' &&
|
|
|
|
!matrix.use_sysroot
|
2020-12-09 11:02:07 -05:00
|
|
|
run: |
|
|
|
|
cargo test --locked --doc
|
2021-05-11 18:06:58 -04:00
|
|
|
cargo test --locked
|
2020-12-02 14:06:19 -05:00
|
|
|
|
2021-05-11 18:06:58 -04:00
|
|
|
- name: Test release
|
|
|
|
if: |
|
|
|
|
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'
|
2021-01-27 09:06:18 -05:00
|
|
|
run: ./wpt make-hosts-file | sudo tee -a /etc/hosts
|
|
|
|
working-directory: test_util/wpt/
|
|
|
|
|
2021-05-11 18:06:58 -04:00
|
|
|
- name: Run web platform tests (debug)
|
|
|
|
if: |
|
|
|
|
startsWith(matrix.os, 'ubuntu') && matrix.kind == 'test' &&
|
|
|
|
matrix.profile == 'debug'
|
|
|
|
env:
|
|
|
|
DENO_BIN: ./target/debug/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 --binary="$DENO_BIN"
|
|
|
|
|
2021-01-27 09:06:18 -05:00
|
|
|
- name: Run web platform tests (release)
|
2021-05-11 18:06:58 -04:00
|
|
|
if: |
|
|
|
|
startsWith(matrix.os, 'ubuntu') && matrix.kind == 'test' &&
|
|
|
|
matrix.profile == 'release'
|
|
|
|
env:
|
|
|
|
DENO_BIN: ./target/release/deno
|
2021-01-27 09:06:18 -05:00
|
|
|
run: |
|
2021-05-11 18:06:58 -04:00
|
|
|
"$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
|
2021-06-02 19:12:28 -04:00
|
|
|
|
|
|
|
- name: Upload wpt results to dl.deno.land
|
|
|
|
if: |
|
|
|
|
runner.os == 'Linux' &&
|
|
|
|
matrix.kind == 'test' &&
|
|
|
|
matrix.profile == 'release' &&
|
|
|
|
github.repository == 'denoland/deno' &&
|
|
|
|
github.ref == 'refs/heads/main'
|
|
|
|
run: |
|
2021-05-11 18:06:58 -04:00
|
|
|
gzip ./wptreport.json
|
2021-06-02 19:12:28 -04:00
|
|
|
gsutil cp ./wpt.json gs://dl.deno.land/wpt/$(git rev-parse HEAD).json
|
2021-06-07 11:41:33 -04:00
|
|
|
gsutil cp ./wptreport.json.gz gs://dl.deno.land/wpt/$(git rev-parse HEAD)-wptreport.json.gz
|
2021-06-02 19:12:28 -04:00
|
|
|
echo $(git rev-parse HEAD) > wpt-latest.txt
|
|
|
|
gsutil cp wpt-latest.txt gs://dl.deno.land/wpt-latest.txt
|
2021-01-27 09:06:18 -05:00
|
|
|
|
2021-06-07 11:41:33 -04:00
|
|
|
- name: Upload wpt results to wpt.fyi
|
|
|
|
if: |
|
|
|
|
runner.os == 'Linux' &&
|
|
|
|
matrix.kind == 'test' &&
|
|
|
|
matrix.profile == 'release' &&
|
|
|
|
github.repository == 'denoland/deno' &&
|
|
|
|
github.ref == 'refs/heads/main'
|
|
|
|
env:
|
|
|
|
WPT_FYI_STAGING_USER: ${{ secrets.WPT_FYI_STAGING_USER }}
|
|
|
|
WPT_FYI_STAGING_PW: ${{ secrets.WPT_FYI_STAGING_PW }}
|
|
|
|
GITHUB_TOKEN: ${{ secrets.DENOBOT_PAT }}
|
|
|
|
run: |
|
2021-05-11 18:06:58 -04:00
|
|
|
./target/release/deno run --allow-all \
|
|
|
|
./tools/upload_wptfyi.js $(git rev-parse HEAD) --ghstatus
|
2021-06-07 11:41:33 -04:00
|
|
|
|
2021-05-11 18:06:58 -04:00
|
|
|
- name: Run benchmarks
|
|
|
|
if: matrix.kind == 'bench' && !matrix.use_sysroot
|
|
|
|
run: cargo bench --locked
|
2021-01-27 09:06:18 -05:00
|
|
|
|
2021-05-11 18:06:58 -04:00
|
|
|
- name: Run benchmarks (in sysroot)
|
|
|
|
if: matrix.kind == 'bench' && matrix.use_sysroot
|
|
|
|
run: |
|
|
|
|
sudo chroot /sysroot \
|
|
|
|
su -l "$(whoami)" \
|
|
|
|
-c "cargo bench --locked"
|
2020-12-02 14:06:19 -05:00
|
|
|
|
|
|
|
- name: Post Benchmarks
|
|
|
|
if: |
|
|
|
|
matrix.kind == 'bench' &&
|
|
|
|
github.repository == 'denoland/deno' &&
|
2021-02-19 09:58:19 -05:00
|
|
|
github.ref == 'refs/heads/main'
|
2020-12-02 14:06:19 -05:00
|
|
|
env:
|
|
|
|
DENOBOT_PAT: ${{ secrets.DENOBOT_PAT }}
|
|
|
|
run: |
|
2021-06-23 17:54:25 -04:00
|
|
|
git clone --depth 1 --branch gh-pages \
|
2021-05-11 18:06:58 -04:00
|
|
|
https://${DENOBOT_PAT}@github.com/denoland/benchmark_data.git \
|
|
|
|
gh-pages
|
|
|
|
./target/release/deno run --allow-all --unstable \
|
|
|
|
./tools/build_benchmark_jsons.js --release
|
2020-12-02 14:06:19 -05:00
|
|
|
cd gh-pages
|
|
|
|
git config user.email "propelml@gmail.com"
|
|
|
|
git config user.name "denobot"
|
|
|
|
git add .
|
|
|
|
git commit --message "Update benchmarks"
|
|
|
|
git push origin gh-pages
|
|
|
|
|
2021-05-11 18:06:58 -04:00
|
|
|
- name: Build product size info
|
|
|
|
if: matrix.kind != 'lint'
|
|
|
|
run: |
|
|
|
|
du -hd1 "./target/${{ matrix.profile }}"
|
|
|
|
du -ha "./target/${{ matrix.profile }}/deno"
|
|
|
|
|
2020-12-02 14:06:19 -05:00
|
|
|
- name: Worker info
|
|
|
|
if: matrix.kind == 'bench'
|
|
|
|
run: |
|
|
|
|
cat /proc/cpuinfo
|
|
|
|
cat /proc/meminfo
|
|
|
|
|
2021-01-14 11:08:30 -05:00
|
|
|
- name: Upload release to dl.deno.land (unix)
|
|
|
|
if: |
|
|
|
|
runner.os != 'Windows' &&
|
2021-04-23 12:54:23 -04:00
|
|
|
matrix.kind == 'test' &&
|
|
|
|
matrix.profile == 'release' &&
|
2021-01-14 11:08:30 -05:00
|
|
|
github.repository == 'denoland/deno' &&
|
2021-02-02 06:05:46 -05:00
|
|
|
startsWith(github.ref, 'refs/tags/')
|
2021-01-14 11:08:30 -05:00
|
|
|
run: |
|
|
|
|
gsutil cp ./target/release/*.zip gs://dl.deno.land/release/${GITHUB_REF#refs/*/}/
|
|
|
|
echo ${GITHUB_REF#refs/*/} > release-latest.txt
|
|
|
|
gsutil cp release-latest.txt gs://dl.deno.land/release-latest.txt
|
|
|
|
|
|
|
|
- name: Upload release to dl.deno.land (windows)
|
|
|
|
if: |
|
|
|
|
runner.os == 'Windows' &&
|
2021-04-23 12:54:23 -04:00
|
|
|
matrix.kind == 'test' &&
|
|
|
|
matrix.profile == 'release' &&
|
2021-01-14 11:08:30 -05:00
|
|
|
github.repository == 'denoland/deno' &&
|
2021-02-02 06:05:46 -05:00
|
|
|
startsWith(github.ref, 'refs/tags/')
|
2021-01-14 11:08:30 -05:00
|
|
|
env:
|
|
|
|
CLOUDSDK_PYTHON: ${{env.pythonLocation}}\python.exe
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
gsutil cp ./target/release/*.zip gs://dl.deno.land/release/${GITHUB_REF#refs/*/}/
|
|
|
|
echo ${GITHUB_REF#refs/*/} > release-latest.txt
|
|
|
|
gsutil cp release-latest.txt gs://dl.deno.land/release-latest.txt
|
|
|
|
|
|
|
|
- name: Upload release to GitHub
|
2019-10-03 13:20:59 -04:00
|
|
|
uses: softprops/action-gh-release@v1
|
2020-05-08 13:28:49 -04:00
|
|
|
if: |
|
2021-04-23 12:54:23 -04:00
|
|
|
matrix.kind == 'test' &&
|
|
|
|
matrix.profile == 'release' &&
|
2020-05-08 13:28:49 -04:00
|
|
|
github.repository == 'denoland/deno' &&
|
2021-02-02 06:05:46 -05:00
|
|
|
startsWith(github.ref, 'refs/tags/')
|
2019-10-03 13:20:59 -04:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
files: |
|
2020-03-22 19:21:31 -04:00
|
|
|
target/release/deno-x86_64-pc-windows-msvc.zip
|
|
|
|
target/release/deno-x86_64-unknown-linux-gnu.zip
|
|
|
|
target/release/deno-x86_64-apple-darwin.zip
|
2019-10-25 15:29:17 -04:00
|
|
|
target/release/deno_src.tar.gz
|
2020-04-02 11:56:09 -04:00
|
|
|
target/release/lib.deno.d.ts
|
2019-10-03 13:20:59 -04:00
|
|
|
draft: true
|