Build with Latest Nightly Rust #489
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build with Latest Nightly Rust | |
# Helpful to know when it does not compile. | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
push: | |
branches: | |
- xxchan/latest-nightly-rust | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Maximize build space | |
uses: easimon/maximize-build-space@master | |
with: | |
remove-dotnet: 'true' | |
remove-android: 'true' | |
remove-haskell: 'true' | |
remove-codeql: 'true' | |
remove-docker-images: 'true' | |
root-reserve-mb: 10240 | |
temp-reserve-mb: 10240 | |
- uses: actions/checkout@v3 | |
if: ${{ github.event_name == 'schedule' }} | |
with: | |
# For daily scheduled run, we use a fixed branch, so that we can apply patches to fix compile errors earlier. | |
# We can also ensure the regression is due to new rust instead of new RisingWave code. | |
ref: xxchan/latest-nightly-rust | |
- uses: actions/checkout@v3 | |
if: ${{ !(github.event_name == 'schedule') }} | |
- name: Setup Rust toolchain | |
run: | | |
rustup override set nightly | |
rustup update nightly | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install -y make build-essential cmake protobuf-compiler curl openssl libssl-dev libsasl2-dev libcurl4-openssl-dev pkg-config postgresql-client tmux lld | |
- name: cargo check | |
run: | | |
export CARGO_INCREMENTAL=0 | |
export CARGO_PROFILE_DEV_DEBUG=false | |
cargo check | |
- name: Show available storage | |
run: df -h |