Skip to content

Version 5.0.0

Version 5.0.0 #20

Workflow file for this run

name: ci
on: [ pull_request, push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
channel: [ stable, nightly ]
steps:
- uses: actions/checkout@v1
- uses: actions-rs/cargo@v1
- name: Select Rust channel
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.channel }}
override: true
- name: Rust Version Info
run: rustc --version && cargo --version
- name: Cache cargo registry
uses: actions/cache@v1
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-${{ matrix.channel }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v1
with:
path: ~/.cargo/git
key: ${{ runner.os }}-${{ matrix.channel }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v1
with:
path: target
key: ${{ runner.os }}-${{ matrix.channel }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
- name: Install EGL & Wayland
run: |
sudo apt-get update -y -qq
sudo apt-get install -y -qq libegl1-mesa-dev libwayland-dev
- name: Cargo build
run: cargo build --features "static dynamic" --all-targets
- name: Run load-minimal
run: cargo run --example load-minimal --features "dynamic 1_4"
android_build:
name: Android Stable
runs-on: ubuntu-latest
env:
TARGET: aarch64-linux-android
steps:
- uses: actions/checkout@v2
- run: echo "$ANDROID_HOME/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin" >> $GITHUB_PATH
- name: Prepare Rust
run: rustup target add ${{ env.TARGET }}
- run: cargo build --features "dynamic 1_4" --target ${{ env.TARGET }}