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
|
2020-09-27 17:41:42 -04:00
|
|
|
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-18.04' }}
|
2020-03-22 19:21:31 -04:00
|
|
|
kind: test_release
|
2020-09-27 17:41:42 -04:00
|
|
|
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-18.04' }}
|
2020-03-22 19:21:31 -04:00
|
|
|
kind: test_debug
|
2020-09-27 17:41:42 -04:00
|
|
|
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-18.04' }}
|
2020-03-22 19:21:31 -04:00
|
|
|
kind: bench
|
2020-09-27 17:41:42 -04:00
|
|
|
- os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-18.04' }}
|
2020-03-22 19:21:31 -04:00
|
|
|
kind: lint
|
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
|
|
|
|
# prevented if 'cargo publish' 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
|
|
|
|
|
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' &&
|
|
|
|
startsWith(github.ref, 'refs/tags/') &&
|
|
|
|
!startsWith(github.ref, 'refs/tags/std/')
|
2019-10-25 15:29:17 -04:00
|
|
|
run: |
|
|
|
|
mkdir -p target/release
|
2020-07-24 07:36:54 -04:00
|
|
|
tar --exclude=.cargo_home --exclude=".git*" --exclude=target --exclude=third_party/node_modules --exclude=third_party/python_packages --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:
|
2020-10-08 12:12:24 -04:00
|
|
|
rust-version: 1.47.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: |-
|
|
|
|
curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.5.1
|
|
|
|
echo "$HOME/.deno/bin" >> $GITHUB_PATH
|
|
|
|
|
|
|
|
- name: Install Deno (Windows)
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
run: |-
|
|
|
|
curl -fsSL https://deno.land/x/install/install.sh | sh -s v1.5.1
|
|
|
|
echo "$HOME/.deno/bin" >> $env:GITHUB_PATH
|
|
|
|
|
2020-01-16 09:04:51 -05:00
|
|
|
- name: Install Python
|
2019-09-18 17:23:27 -04:00
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
2020-01-16 12:08:40 -05:00
|
|
|
python-version: "2.7"
|
2019-09-18 17:23:27 -04:00
|
|
|
architecture: x64
|
|
|
|
|
2019-12-04 18:16:39 -05:00
|
|
|
- name: Remove unused versions of Python
|
2020-09-26 10:13:59 -04:00
|
|
|
if: startsWith(matrix.os, 'windows')
|
2019-12-04 18:16:39 -05:00
|
|
|
run: |-
|
|
|
|
$env:PATH -split ";" |
|
|
|
|
Where-Object { Test-Path "$_\python.exe" } |
|
|
|
|
Select-Object -Skip 1 |
|
|
|
|
ForEach-Object { Move-Item "$_" "$_.disabled" }
|
|
|
|
|
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
|
|
|
|
2020-01-24 14:24:27 -05:00
|
|
|
- name: Test release
|
2020-09-26 10:13:59 -04:00
|
|
|
if: matrix.kind == 'test_release'
|
2019-09-19 14:48:05 -04:00
|
|
|
run: cargo test --release --locked --all-targets
|
2019-09-18 17:23:27 -04:00
|
|
|
|
2019-10-14 17:35:43 -04:00
|
|
|
- name: Test debug
|
2020-09-26 10:13:59 -04:00
|
|
|
if: matrix.kind == 'test_debug'
|
2020-03-20 21:48:34 -04:00
|
|
|
run: cargo test --locked --all-targets
|
2019-10-14 17:35:43 -04:00
|
|
|
|
2019-10-02 19:00:46 -04:00
|
|
|
- name: Run Benchmarks
|
2020-09-26 10:13:59 -04:00
|
|
|
if: matrix.kind == 'bench'
|
2020-08-28 09:03:50 -04:00
|
|
|
run: cargo bench
|
2019-10-02 19:00:46 -04:00
|
|
|
|
|
|
|
- name: Post Benchmarks
|
2020-05-08 13:28:49 -04:00
|
|
|
if: |
|
2020-09-26 10:13:59 -04:00
|
|
|
matrix.kind == 'bench' &&
|
2020-05-08 13:28:49 -04:00
|
|
|
github.repository == 'denoland/deno' &&
|
|
|
|
github.ref == 'refs/heads/master'
|
2019-10-02 19:00:46 -04:00
|
|
|
env:
|
|
|
|
DENOBOT_PAT: ${{ secrets.DENOBOT_PAT }}
|
|
|
|
run: |
|
2020-03-07 06:29:19 -05:00
|
|
|
git clone --depth 1 -b gh-pages https://${DENOBOT_PAT}@github.com/denoland/benchmark_data.git gh-pages
|
2020-11-05 09:53:21 -05:00
|
|
|
deno run --unstable -A ./tools/build_benchmark_jsons.js --release
|
2019-10-02 19:00:46 -04:00
|
|
|
cd gh-pages
|
|
|
|
git config user.email "propelml@gmail.com"
|
|
|
|
git config user.name "denobot"
|
|
|
|
git add .
|
|
|
|
git commit --message "Update benchmarks"
|
2019-10-06 11:18:15 -04:00
|
|
|
git push origin gh-pages
|
2019-10-02 19:00:46 -04:00
|
|
|
|
|
|
|
- name: Worker info
|
2020-09-26 10:13:59 -04:00
|
|
|
if: matrix.kind == 'bench'
|
2019-10-02 19:00:46 -04:00
|
|
|
run: |
|
|
|
|
cat /proc/cpuinfo
|
|
|
|
cat /proc/meminfo
|
|
|
|
|
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
|
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
|
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
|
2019-10-03 13:20:59 -04:00
|
|
|
|
|
|
|
- name: Release
|
|
|
|
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' &&
|
|
|
|
startsWith(github.ref, 'refs/tags/') &&
|
|
|
|
!startsWith(github.ref, 'refs/tags/std/')
|
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
|
|
|
|
|
2020-01-17 17:53:13 -05:00
|
|
|
- name: Publish
|
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' &&
|
|
|
|
startsWith(github.ref, 'refs/tags/') &&
|
|
|
|
!startsWith(github.ref, 'refs/tags/std/')
|
2020-01-17 17:53:13 -05:00
|
|
|
env:
|
|
|
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
2020-01-24 14:24:27 -05:00
|
|
|
run: |
|
|
|
|
cd core
|
|
|
|
cargo publish
|
2020-08-09 07:27:39 -04:00
|
|
|
sleep 30
|
|
|
|
cd ../op_crates/web
|
|
|
|
cargo publish
|
|
|
|
sleep 30
|
2020-09-18 16:41:58 -04:00
|
|
|
cd ../fetch
|
2020-09-18 12:31:30 -04:00
|
|
|
cargo publish
|
|
|
|
sleep 30
|
2020-08-09 07:27:39 -04:00
|
|
|
cd ../../cli
|
2020-01-24 14:24:27 -05:00
|
|
|
sleep 30
|
|
|
|
cargo publish
|