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:
|
2020-09-26 10:13:59 -04:00
|
|
|
name: ${{ matrix.kind }} ${{ 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 }}
|
2019-10-04 14:50:30 -04:00
|
|
|
timeout-minutes: 60
|
2019-09-18 17:23:27 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-09-26 10:13:59 -04:00
|
|
|
include:
|
2020-07-26 16:24:32 -04:00
|
|
|
- os: macos-10.15
|
2020-03-22 19:21:31 -04:00
|
|
|
kind: test_release
|
2019-10-24 17:56:14 -04:00
|
|
|
- os: windows-2019
|
2020-03-22 19:21:31 -04:00
|
|
|
kind: test_release
|
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-02-12 16:10:24 -05:00
|
|
|
# TODO(ry) Ideally we could use ubuntu-latest-xl for lint but there's
|
|
|
|
# a bug with dprint that is preventing this from running.
|
|
|
|
- os: ubuntu-latest
|
2020-03-22 19:21:31 -04:00
|
|
|
kind: lint
|
2021-02-12 16:10:24 -05:00
|
|
|
# TODO(ry) Ideally we would use ubuntu-latest-xl for test_debug too,
|
|
|
|
# but there are race conditions in our test we are working around by
|
|
|
|
# using the slower runner.
|
|
|
|
- os: ubuntu-latest
|
|
|
|
kind: test_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_release
|
2020-03-17 20:06:40 -04:00
|
|
|
|
2020-03-21 16:15:46 -04:00
|
|
|
# Always run master branch builds to completion. This allows the cache to
|
|
|
|
# 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).
|
2020-09-27 17:41:42 -04:00
|
|
|
fail-fast: ${{ github.event_name == 'pull_request' || (github.ref !=
|
2020-05-10 12:39:27 -04:00
|
|
|
'refs/heads/master' && !startsWith(github.ref, 'refs/tags/')) }}
|
2020-03-21 16:15:46 -04:00
|
|
|
|
2020-03-17 20:06:40 -04:00
|
|
|
env:
|
2020-03-21 16:15:46 -04:00
|
|
|
CARGO_INCREMENTAL: 0
|
2020-03-17 20:06:40 -04:00
|
|
|
RUST_BACKTRACE: full
|
2020-11-07 14:31:35 -05:00
|
|
|
CARGO_TERM_COLOR: always
|
2020-03-17 20:06:40 -04:00
|
|
|
|
2019-09-18 17:23:27 -04:00
|
|
|
steps:
|
|
|
|
- name: Configure git
|
|
|
|
run: git config --global core.symlinks true
|
|
|
|
|
|
|
|
- name: Clone repository
|
2020-05-26 23:04:38 -04:00
|
|
|
uses: actions/checkout@v2
|
2019-09-18 17:23:27 -04:00
|
|
|
with:
|
2020-02-25 12:03:11 -05:00
|
|
|
# Use depth > 1, because sometimes we need to rebuild master and if
|
|
|
|
# other commits have landed it will become impossible to rebuild if
|
|
|
|
# the checkout is too shallow.
|
|
|
|
fetch-depth: 5
|
2019-09-18 17:23:27 -04:00
|
|
|
submodules: true
|
|
|
|
|
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') &&
|
|
|
|
matrix.kind == 'test_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-25 15:29:17 -04:00
|
|
|
run: |
|
|
|
|
mkdir -p target/release
|
2020-11-08 13:07:33 -05:00
|
|
|
tar --exclude=.cargo_home --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
|
|
|
|
2019-09-18 17:23:27 -04:00
|
|
|
- name: Install rust
|
|
|
|
uses: hecrj/setup-rust-action@v1
|
|
|
|
with:
|
2021-02-12 05:08:36 -05:00
|
|
|
rust-version: 1.50.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
|
|
|
|
if: |
|
|
|
|
!startsWith(matrix.os, 'windows')
|
|
|
|
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
|
|
|
|
|
|
|
|
- name: Install Deno (Windows)
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
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" >> $env:GITHUB_PATH
|
|
|
|
|
2021-01-02 23:19:46 -05:00
|
|
|
- name: Install Python
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
2021-01-27 09:06:18 -05:00
|
|
|
python-version: "3.8"
|
2021-01-02 23:19:46 -05:00
|
|
|
architecture: x64
|
|
|
|
|
2020-12-26 08:02:37 -05:00
|
|
|
- name: Install Node
|
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: "14"
|
|
|
|
check-latest: true
|
|
|
|
|
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' &&
|
|
|
|
matrix.kind == 'test_release' &&
|
|
|
|
github.repository == 'denoland/deno' &&
|
2021-02-05 14:33:21 -05:00
|
|
|
(github.ref == 'refs/heads/master' ||
|
|
|
|
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' &&
|
|
|
|
matrix.kind == 'test_release' &&
|
|
|
|
github.repository == 'denoland/deno' &&
|
2021-02-05 14:33:21 -05:00
|
|
|
(github.ref == 'refs/heads/master' ||
|
|
|
|
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
|
|
|
|
|
2020-11-25 05:30:14 -05:00
|
|
|
- name: Configure canary build
|
|
|
|
if: |
|
|
|
|
matrix.kind == 'test_release' &&
|
|
|
|
github.repository == 'denoland/deno' &&
|
|
|
|
github.ref == 'refs/heads/master'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
echo "DENO_CANARY=true" >> $GITHUB_ENV
|
|
|
|
|
2019-09-18 17:23:27 -04:00
|
|
|
- name: Log versions
|
|
|
|
run: |
|
|
|
|
node -v
|
|
|
|
python --version
|
|
|
|
rustc --version
|
|
|
|
cargo --version
|
2020-11-05 09:53:21 -05:00
|
|
|
deno --version
|
2019-09-18 17:23:27 -04:00
|
|
|
|
2020-11-05 09:53:21 -05:00
|
|
|
- name: lint.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/lint.js
|
2019-10-05 03:17:18 -04:00
|
|
|
|
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
|
|
|
|
2020-03-18 09:59:10 -04:00
|
|
|
- name: Build release
|
2020-05-08 13:28:49 -04:00
|
|
|
if: |
|
2020-09-26 10:13:59 -04:00
|
|
|
matrix.kind == 'test_release' ||
|
|
|
|
matrix.kind == 'bench'
|
2020-10-09 13:05:50 -04:00
|
|
|
run: cargo build --release --locked --all-targets -vv
|
2019-09-18 17:23:27 -04:00
|
|
|
|
2020-03-18 09:59:10 -04:00
|
|
|
- name: Build debug
|
2020-09-26 10:13:59 -04:00
|
|
|
if: matrix.kind == 'test_debug'
|
2020-03-20 21:48:34 -04:00
|
|
|
run: cargo build --locked --all-targets
|
2020-03-18 09:59:10 -04:00
|
|
|
|
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') &&
|
|
|
|
matrix.kind == 'test_release'
|
2020-03-22 19:21:31 -04:00
|
|
|
run: |
|
|
|
|
cd target/release
|
|
|
|
zip -r deno-x86_64-unknown-linux-gnu.zip deno
|
2021-01-07 21:08:51 -05:00
|
|
|
zip -r denort-x86_64-unknown-linux-gnu.zip denort
|
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') &&
|
|
|
|
matrix.kind == 'test_release'
|
2020-03-22 19:21:31 -04:00
|
|
|
run: |
|
|
|
|
cd target/release
|
|
|
|
zip -r deno-x86_64-apple-darwin.zip deno
|
2021-01-07 21:08:51 -05:00
|
|
|
zip -r denort-x86_64-apple-darwin.zip denort
|
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') &&
|
|
|
|
matrix.kind == 'test_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
|
2021-01-07 21:08:51 -05:00
|
|
|
Compress-Archive -CompressionLevel Optimal -Force -Path target/release/denort.exe -DestinationPath target/release/denort-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' &&
|
|
|
|
matrix.kind == 'test_release' &&
|
|
|
|
github.repository == 'denoland/deno' &&
|
|
|
|
github.ref == 'refs/heads/master'
|
|
|
|
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' &&
|
|
|
|
matrix.kind == 'test_release' &&
|
|
|
|
github.repository == 'denoland/deno' &&
|
|
|
|
github.ref == 'refs/heads/master'
|
|
|
|
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 release
|
|
|
|
if: matrix.kind == 'test_release'
|
|
|
|
run: cargo test --release --locked --all-targets
|
|
|
|
|
|
|
|
- name: Test debug
|
|
|
|
if: matrix.kind == 'test_debug'
|
2020-12-09 11:02:07 -05:00
|
|
|
run: |
|
|
|
|
cargo test --locked --doc
|
|
|
|
cargo test --locked --all-targets
|
2020-12-02 14:06:19 -05:00
|
|
|
|
2021-01-27 09:06:18 -05:00
|
|
|
- name: Configure hosts file for WPT (unix)
|
|
|
|
if: runner.os != 'Windows'
|
|
|
|
run: ./wpt make-hosts-file | sudo tee -a /etc/hosts
|
|
|
|
working-directory: test_util/wpt/
|
|
|
|
|
|
|
|
- name: Configure hosts file for WPT (windows)
|
|
|
|
if: runner.os == 'Windows'
|
|
|
|
working-directory: test_util/wpt/
|
|
|
|
run: python wpt make-hosts-file | Out-File $env:SystemRoot\System32\drivers\etc\hosts -Encoding ascii -Append
|
|
|
|
|
|
|
|
- name: Run web platform tests (release)
|
|
|
|
if: matrix.kind == 'test_release'
|
|
|
|
run: |
|
|
|
|
deno run --unstable --allow-write --allow-read --allow-net --allow-env --allow-run ./tools/wpt.ts setup
|
|
|
|
deno run --unstable --allow-write --allow-read --allow-net --allow-env --allow-run ./tools/wpt.ts run --quiet --release
|
|
|
|
|
|
|
|
- name: Run web platform tests (debug)
|
|
|
|
if: matrix.kind == 'test_debug'
|
|
|
|
run: |
|
|
|
|
deno run --unstable --allow-write --allow-read --allow-net --allow-env --allow-run ./tools/wpt.ts setup
|
|
|
|
deno run --unstable --allow-write --allow-read --allow-net --allow-env --allow-run ./tools/wpt.ts run --quiet
|
|
|
|
|
2020-12-02 14:06:19 -05:00
|
|
|
- name: Run Benchmarks
|
|
|
|
if: matrix.kind == 'bench'
|
|
|
|
run: cargo bench
|
|
|
|
|
|
|
|
- name: Post Benchmarks
|
|
|
|
if: |
|
|
|
|
matrix.kind == 'bench' &&
|
|
|
|
github.repository == 'denoland/deno' &&
|
|
|
|
github.ref == 'refs/heads/master'
|
|
|
|
env:
|
|
|
|
DENOBOT_PAT: ${{ secrets.DENOBOT_PAT }}
|
|
|
|
run: |
|
|
|
|
git clone --depth 1 -b gh-pages https://${DENOBOT_PAT}@github.com/denoland/benchmark_data.git gh-pages
|
|
|
|
deno run --unstable -A ./tools/build_benchmark_jsons.js --release
|
|
|
|
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
|
|
|
|
|
|
|
|
- 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' &&
|
|
|
|
matrix.kind == 'test_release' &&
|
|
|
|
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' &&
|
|
|
|
matrix.kind == 'test_release' &&
|
|
|
|
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: |
|
2020-09-26 10:13:59 -04:00
|
|
|
matrix.kind == 'test_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
|