mirror of
https://github.com/servo/servo
synced 2026-05-11 01:22:19 +02:00
32 lines
730 B
YAML
32 lines
730 B
YAML
name: Test with nightly rustc
|
|
|
|
on:
|
|
schedule:
|
|
# Run at 5:30 am, daily.
|
|
- cron: '15 5 * * *'
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
SHELL: /bin/bash
|
|
|
|
jobs:
|
|
build-linux-with-rust-nightly:
|
|
name: Build (Linux) + rustc nightly
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 2
|
|
- name: Update rustc
|
|
run: echo nightly > rust-toolchain
|
|
- name: Bootstrap
|
|
run: |
|
|
python3 -m pip install --upgrade pip virtualenv
|
|
sudo apt update
|
|
python3 ./mach bootstrap
|
|
- name: Release build
|
|
run: python3 ./mach build --release
|
|
- name: Unit tests
|
|
run: python3 ./mach test-unit --release
|