Linux Nightly Bleeding Edge #504
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: Linux Nightly Bleeding Edge | |
on: | |
schedule: | |
- cron: "0 */24 * * *" | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
python-version: '3.11' | |
- name: Install and Run Redis | |
run: | | |
sudo apt-get install redis-server | |
sudo service redis-server start | |
- name: Installing Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
# get the LATEST rust nightly | |
toolchain: nightly | |
profile: minimal | |
components: rust-src | |
target: x86_64-unknown-linux-gnu | |
override: true | |
default: true | |
- name: Run tests | |
env: | |
RUSTFLAGS: -C target-feature=+fxsr,+sse,+sse2,+sse3,+ssse3,+sse4.1,+sse4.2,+popcnt,+avx,+fma | |
run: cargo test --verbose --locked --features=apply,fetch,foreach,generate,geocode,luau,python,feature_capable,nightly,polars |