2019-10-31 21:01:29 -04:00
|
|
|
name: ci
|
|
|
|
|
2022-06-27 14:37:04 -04:00
|
|
|
on:
|
2022-05-28 11:16:00 -04:00
|
|
|
push:
|
|
|
|
branches: [main]
|
2022-06-15 08:04:35 -04:00
|
|
|
tags: ["**"]
|
2022-05-28 11:16:00 -04:00
|
|
|
pull_request:
|
|
|
|
branches: [main]
|
2022-06-27 14:37:04 -04:00
|
|
|
types: [labeled, opened, synchronize, reopened]
|
2019-10-31 21:01:29 -04:00
|
|
|
|
2024-02-09 17:13:24 -05:00
|
|
|
permissions: write-all
|
|
|
|
|
2019-10-31 21:01:29 -04:00
|
|
|
jobs:
|
|
|
|
build:
|
2020-03-16 15:42:51 -04:00
|
|
|
name: ${{ matrix.config.variant }} ${{ matrix.config.target }}
|
2020-02-12 21:43:38 -05:00
|
|
|
runs-on: ${{ matrix.config.os }}
|
2022-12-18 13:41:03 -05:00
|
|
|
timeout-minutes: 180
|
2019-10-31 21:01:29 -04:00
|
|
|
strategy:
|
2021-02-14 10:15:49 -05:00
|
|
|
# Always run main branch builds to completion. This allows the cache to
|
2020-05-11 17:20:48 -04:00
|
|
|
# stay mostly up-to-date in situations where a single job fails due to
|
|
|
|
# e.g. a flaky test.
|
|
|
|
# Don't fast-fail on tag build because publishing binaries shouldn't be
|
|
|
|
# prevented if 'cargo publish' fails (which can be a false negative).
|
|
|
|
fail-fast:
|
2022-06-27 14:37:04 -04:00
|
|
|
${{ (github.event_name == 'pull_request' || (github.ref !=
|
|
|
|
'refs/heads/main' && !startsWith(github.ref, 'refs/tags/'))) &&
|
|
|
|
!contains(github.event.pull_request.labels.*.name, 'no-fail-fast') }}
|
2019-10-31 21:01:29 -04:00
|
|
|
matrix:
|
2020-02-12 21:43:38 -05:00
|
|
|
config:
|
|
|
|
- os: macOS-latest
|
|
|
|
target: x86_64-apple-darwin
|
2020-04-04 22:10:55 -04:00
|
|
|
variant: debug
|
2020-03-16 15:42:51 -04:00
|
|
|
|
|
|
|
- os: macOS-latest
|
|
|
|
target: x86_64-apple-darwin
|
2020-04-04 22:10:55 -04:00
|
|
|
variant: release
|
2022-05-18 04:53:34 -04:00
|
|
|
|
2023-03-31 10:09:56 -04:00
|
|
|
- os: ${{ github.repository == 'denoland/rusty_v8' && 'ubuntu-22.04-xl' || 'ubuntu-22.04' }}
|
2020-04-04 22:10:55 -04:00
|
|
|
target: x86_64-unknown-linux-gnu
|
|
|
|
variant: debug
|
2020-03-16 15:42:51 -04:00
|
|
|
|
2023-03-31 10:09:56 -04:00
|
|
|
- os: ${{ github.repository == 'denoland/rusty_v8' && 'ubuntu-22.04-xl' || 'ubuntu-22.04' }}
|
2020-04-04 22:10:55 -04:00
|
|
|
target: x86_64-unknown-linux-gnu
|
|
|
|
variant: release
|
2020-03-16 15:42:51 -04:00
|
|
|
|
2022-05-14 05:56:53 -04:00
|
|
|
- os: ${{ github.repository == 'denoland/rusty_v8' && 'windows-2019-xxl' || 'windows-2019' }}
|
2020-02-12 21:43:38 -05:00
|
|
|
target: x86_64-pc-windows-msvc
|
2020-04-04 23:12:41 -04:00
|
|
|
variant: release # Note: we do not support windows debug builds.
|
|
|
|
|
2023-03-31 10:09:56 -04:00
|
|
|
- os: ${{ github.repository == 'denoland/rusty_v8' && 'ubuntu-22.04-xl' || 'ubuntu-22.04' }}
|
2021-02-19 05:56:11 -05:00
|
|
|
target: aarch64-unknown-linux-gnu
|
|
|
|
variant: debug
|
2021-03-27 15:18:37 -04:00
|
|
|
|
2023-03-31 10:09:56 -04:00
|
|
|
- os: ${{ github.repository == 'denoland/rusty_v8' && 'ubuntu-22.04-xl' || 'ubuntu-22.04' }}
|
2021-02-19 05:56:11 -05:00
|
|
|
target: aarch64-unknown-linux-gnu
|
|
|
|
variant: release
|
2020-01-06 18:07:46 -05:00
|
|
|
|
2020-03-27 16:17:19 -04:00
|
|
|
env:
|
|
|
|
V8_FROM_SOURCE: true
|
2020-04-04 16:24:08 -04:00
|
|
|
CARGO_VARIANT_FLAG: ${{ matrix.config.variant == 'release' && '--release' || '' }}
|
|
|
|
LIB_NAME: ${{ contains(matrix.config.target, 'windows') && 'rusty_v8' || 'librusty_v8' }}
|
|
|
|
LIB_EXT: ${{ contains(matrix.config.target, 'windows') && 'lib' || 'a' }}
|
2021-05-03 15:19:03 -04:00
|
|
|
RUSTFLAGS: -D warnings
|
2020-03-27 16:17:19 -04:00
|
|
|
|
2019-10-31 21:01:29 -04:00
|
|
|
steps:
|
|
|
|
- name: Configure git
|
|
|
|
run: git config --global core.symlinks true
|
|
|
|
|
|
|
|
- name: Clone repository
|
2024-03-01 12:28:17 -05:00
|
|
|
uses: actions/checkout@v4
|
2019-10-31 21:01:29 -04:00
|
|
|
with:
|
2019-11-02 18:57:18 -04:00
|
|
|
fetch-depth: 10
|
2020-04-04 22:10:55 -04:00
|
|
|
submodules: recursive
|
2019-10-31 21:01:29 -04:00
|
|
|
|
|
|
|
- name: Install rust
|
2024-03-01 12:28:17 -05:00
|
|
|
uses: dsherret/rust-toolchain-file@v1
|
2019-10-31 21:01:29 -04:00
|
|
|
|
2019-11-29 21:58:29 -05:00
|
|
|
- name: Install python
|
2023-01-24 00:17:17 -05:00
|
|
|
uses: actions/setup-python@v4
|
2019-11-29 21:58:29 -05:00
|
|
|
with:
|
2023-01-24 00:17:17 -05:00
|
|
|
python-version: 3.11.x
|
2019-11-29 21:58:29 -05:00
|
|
|
architecture: x64
|
2019-11-01 17:28:09 -04:00
|
|
|
|
2020-04-04 23:12:41 -04:00
|
|
|
- name: Install cross compilation toolchain
|
|
|
|
if: matrix.config.target == 'aarch64-unknown-linux-gnu'
|
|
|
|
run: |
|
|
|
|
rustup target add aarch64-unknown-linux-gnu
|
|
|
|
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install -yq --no-install-suggests --no-install-recommends \
|
2022-01-12 19:01:55 -05:00
|
|
|
binfmt-support g++-10-aarch64-linux-gnu g++-10-multilib \
|
|
|
|
gcc-10-aarch64-linux-gnu libc6-arm64-cross qemu qemu-user \
|
2020-04-04 23:12:41 -04:00
|
|
|
qemu-user-binfmt
|
|
|
|
|
|
|
|
sudo ln -s /usr/aarch64-linux-gnu/lib/ld-linux-aarch64.so.1 \
|
|
|
|
/lib/ld-linux-aarch64.so.1
|
|
|
|
|
2022-01-12 19:01:55 -05:00
|
|
|
echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=/usr/bin/aarch64-linux-gnu-gcc-10" >> ${GITHUB_ENV}
|
2020-11-17 13:57:52 -05:00
|
|
|
echo "QEMU_LD_PREFIX=/usr/aarch64-linux-gnu" >> ${GITHUB_ENV}
|
2020-04-04 23:12:41 -04:00
|
|
|
|
2021-03-27 15:18:37 -04:00
|
|
|
- name: Write git_submodule_status.txt
|
|
|
|
run: git submodule status --recursive > git_submodule_status.txt
|
|
|
|
|
2020-04-04 16:24:08 -04:00
|
|
|
- name: Cache
|
2023-01-24 00:17:17 -05:00
|
|
|
uses: actions/cache@v3
|
2020-03-18 10:48:34 -04:00
|
|
|
with:
|
2020-04-04 16:24:08 -04:00
|
|
|
# Note: rusty_v8 targets always get get rebuilt, and their outputs
|
|
|
|
# ('librusty_v8.rlib', the whole 'gn_out' directory, etc.) can be
|
|
|
|
# quite big, so we cache only those subdirectories of
|
|
|
|
# target/{debug|release} that contain the build output for crates that
|
|
|
|
# come from the registry. By additionally saving the sccache cache
|
|
|
|
# directory it's still possible to build v8 fast.
|
|
|
|
path: |-
|
|
|
|
target/sccache
|
|
|
|
target/*/.*
|
|
|
|
target/*/build
|
|
|
|
target/*/deps
|
2020-08-27 10:37:50 -04:00
|
|
|
key:
|
2021-03-27 15:18:37 -04:00
|
|
|
cargo-${{ matrix.config.target }}-${{ matrix.config.variant }}-${{ hashFiles('Cargo.lock', 'build.rs', 'git_submodule_status.txt') }}
|
2020-08-27 10:37:50 -04:00
|
|
|
restore-keys:
|
2021-03-27 15:18:37 -04:00
|
|
|
cargo-${{ matrix.config.target }}-${{ matrix.config.variant }}-
|
2020-03-18 10:48:34 -04:00
|
|
|
|
2020-09-07 18:42:43 -04:00
|
|
|
# It seems that the 'target' directory does not always get restored
|
|
|
|
# from cache correctly on MacOS. In the build log we see the following:
|
|
|
|
#
|
|
|
|
# Fresh serde_derive v1.0.115
|
|
|
|
#
|
|
|
|
# But a little while after that Cargo aborts because 'serde_derive' is
|
|
|
|
# now nowhere to be found. We're not the only ones experiencing this,
|
|
|
|
# see https://github.com/actions-rs/cargo/issues/111.
|
|
|
|
#
|
|
|
|
# error[E0463]: can't find crate for `serde_derive`
|
|
|
|
# ##[error] --> /Users/runner/.cargo/registry/src/github.com-
|
|
|
|
# | 1ecc6299db9ec823/serde-1.0.115/src/lib.rs:285:1
|
|
|
|
# |
|
|
|
|
# 285 | extern crate serde_derive;
|
|
|
|
# | ^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
|
|
|
|
- name: Work around MacOS + Cargo + Github Actions cache bug
|
|
|
|
if: runner.os == 'macOS'
|
|
|
|
run: cargo clean -p serde_derive
|
|
|
|
|
2020-01-06 18:07:46 -05:00
|
|
|
- name: Install and start sccache
|
|
|
|
shell: pwsh
|
2019-10-31 21:01:29 -04:00
|
|
|
env:
|
2020-04-04 16:24:08 -04:00
|
|
|
SCCACHE_DIR: ${{ github.workspace }}/target/sccache
|
|
|
|
SCCACHE_CACHE_SIZE: 128M
|
2019-10-31 21:01:29 -04:00
|
|
|
SCCACHE_IDLE_TIMEOUT: 0
|
2019-11-01 00:10:00 -04:00
|
|
|
run: |
|
2021-02-08 16:03:23 -05:00
|
|
|
$version = "0.2.12"
|
2020-01-06 18:07:46 -05:00
|
|
|
$platform =
|
|
|
|
@{ "macOS" = "x86_64-apple-darwin"
|
|
|
|
"Linux" = "x86_64-unknown-linux-musl"
|
|
|
|
"Windows" = "x86_64-pc-windows-msvc"
|
|
|
|
}.${{ runner.os }}
|
|
|
|
$basename = "sccache-$version-$platform"
|
|
|
|
$url = "https://github.com/mozilla/sccache/releases/download/" +
|
|
|
|
"$version/$basename.tar.gz"
|
2020-04-04 16:24:08 -04:00
|
|
|
cd ~
|
2020-01-06 18:07:46 -05:00
|
|
|
curl -LO $url
|
|
|
|
tar -xzvf "$basename.tar.gz"
|
|
|
|
. $basename/sccache --start-server
|
2020-11-17 13:57:52 -05:00
|
|
|
echo "$(pwd)/$basename" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
2020-01-06 18:07:46 -05:00
|
|
|
|
2020-04-04 16:24:08 -04:00
|
|
|
- name: Test
|
2022-01-04 15:32:48 -05:00
|
|
|
env:
|
|
|
|
SCCACHE_IDLE_TIMEOUT: 0
|
2020-08-27 00:07:49 -04:00
|
|
|
run:
|
2022-05-18 04:53:34 -04:00
|
|
|
cargo test -vv --all-targets --locked ${{ env.CARGO_VARIANT_FLAG }}
|
2020-04-04 16:24:08 -04:00
|
|
|
--target ${{ matrix.config.target }}
|
2020-03-16 15:42:51 -04:00
|
|
|
|
2020-04-04 16:24:08 -04:00
|
|
|
- name: Clippy
|
2020-08-27 00:07:49 -04:00
|
|
|
run:
|
2022-05-18 04:53:34 -04:00
|
|
|
cargo clippy --all-targets --locked ${{ env.CARGO_VARIANT_FLAG }}
|
2020-04-04 16:24:08 -04:00
|
|
|
--target ${{ matrix.config.target }} -- -D clippy::all
|
2019-11-01 00:54:54 -04:00
|
|
|
|
2019-12-22 10:43:59 -05:00
|
|
|
- name: Rustfmt
|
2020-02-12 21:43:38 -05:00
|
|
|
run: cargo fmt -- --check
|
2019-12-22 10:43:59 -05:00
|
|
|
|
2020-04-04 16:24:08 -04:00
|
|
|
- name: Prepare binary publish
|
|
|
|
run: cp
|
|
|
|
target/${{ matrix.config.target }}/${{ matrix.config.variant }}/gn_out/obj/${{ env.LIB_NAME }}.${{ env.LIB_EXT }}
|
|
|
|
target/${{ env.LIB_NAME }}_${{ matrix.config.variant }}_${{ matrix.config.target }}.${{ env.LIB_EXT }}
|
2020-03-16 15:42:51 -04:00
|
|
|
|
2020-04-04 16:24:08 -04:00
|
|
|
- name: Binary publish
|
2022-12-12 20:07:14 -05:00
|
|
|
uses: softprops/action-gh-release@v0.1.15
|
2020-08-27 00:07:49 -04:00
|
|
|
if: >-
|
|
|
|
github.repository == 'denoland/rusty_v8' &&
|
|
|
|
startsWith(github.ref, 'refs/tags/')
|
2020-03-16 15:42:51 -04:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
2020-04-04 16:24:08 -04:00
|
|
|
files: target/${{ env.LIB_NAME }}_${{ matrix.config.variant }}_${{ matrix.config.target }}.${{ env.LIB_EXT }}
|
2020-03-16 15:42:51 -04:00
|
|
|
|
2020-01-06 18:07:46 -05:00
|
|
|
# TODO: add clang-format and maybe cpplint.
|
|
|
|
|
2021-07-02 14:06:51 -04:00
|
|
|
- name: Cargo Package
|
|
|
|
if: >-
|
|
|
|
github.repository == 'denoland/rusty_v8' &&
|
|
|
|
startsWith(matrix.config.target , 'x86_64') &&
|
|
|
|
matrix.config.variant == 'debug' &&
|
|
|
|
runner.os == 'Linux'
|
|
|
|
run: cargo package -vv --locked
|
2020-01-06 18:07:46 -05:00
|
|
|
|
2019-12-04 01:45:50 -05:00
|
|
|
- name: Publish
|
2020-02-19 00:45:10 -05:00
|
|
|
# Only publish on x64 linux when there's a git tag:
|
2020-04-04 22:10:55 -04:00
|
|
|
if: >-
|
2020-01-06 18:07:46 -05:00
|
|
|
startsWith(github.ref, 'refs/tags/') &&
|
|
|
|
github.repository == 'denoland/rusty_v8' &&
|
2020-02-19 00:45:10 -05:00
|
|
|
startsWith(matrix.config.target , 'x86_64') &&
|
2020-03-16 15:42:51 -04:00
|
|
|
matrix.config.variant == 'debug' &&
|
2020-01-06 18:07:46 -05:00
|
|
|
runner.os == 'Linux'
|
2019-12-04 01:45:50 -05:00
|
|
|
env:
|
|
|
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
|
|
|
run: cargo publish -vv
|