2020-08-24 18:16:52 +00:00
|
|
|
name: CI
|
2020-05-29 03:48:18 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2021-02-19 21:15:29 +00:00
|
|
|
push:
|
|
|
|
branches: [main, staging, trying]
|
2020-05-29 03:48:18 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2020-08-26 18:57:35 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
toolchain: [stable, nightly]
|
2021-01-27 01:11:38 +00:00
|
|
|
os: [windows-latest, ubuntu-latest, macos-latest]
|
2020-09-03 01:10:42 +00:00
|
|
|
exclude:
|
2021-01-27 01:11:38 +00:00
|
|
|
- os: macos-latest
|
2020-09-03 01:10:42 +00:00
|
|
|
toolchain: nightly
|
2021-01-27 01:11:38 +00:00
|
|
|
- os: windows-latest
|
2020-11-02 20:49:31 +00:00
|
|
|
toolchain: nightly
|
2020-08-27 19:24:02 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-05-29 03:48:18 +00:00
|
|
|
steps:
|
2020-05-29 05:44:04 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-08-16 03:27:41 +00:00
|
|
|
|
2020-06-08 08:05:56 +00:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2020-08-26 18:57:35 +00:00
|
|
|
toolchain: ${{ matrix.toolchain }}
|
2021-01-27 01:11:38 +00:00
|
|
|
components: rustfmt, clippy
|
2020-06-08 08:05:56 +00:00
|
|
|
override: true
|
2020-08-16 03:27:41 +00:00
|
|
|
|
2021-01-27 01:11:38 +00:00
|
|
|
- name: Install alsa and udev
|
|
|
|
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
|
|
|
|
if: runner.os == 'linux'
|
2020-08-16 03:27:41 +00:00
|
|
|
|
2021-01-27 01:11:38 +00:00
|
|
|
- name: Check the format
|
2021-02-22 08:42:19 +00:00
|
|
|
# See tools/ci/src/main.rs for the commands this runs
|
2021-03-07 19:50:17 +00:00
|
|
|
run: cargo run -p ci
|
2021-01-27 01:11:38 +00:00
|
|
|
if: runner.os == 'linux' && matrix.toolchain == 'stable'
|
2020-08-26 18:57:35 +00:00
|
|
|
|
2021-01-27 01:11:38 +00:00
|
|
|
- name: Build & run tests
|
2020-08-26 18:57:35 +00:00
|
|
|
run: cargo test --workspace
|
|
|
|
env:
|
|
|
|
CARGO_INCREMENTAL: 0
|
|
|
|
RUSTFLAGS: "-C debuginfo=0 -D warnings"
|
|
|
|
|
2020-10-22 01:15:14 +00:00
|
|
|
build-wasm:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
toolchain: [stable, nightly]
|
2021-01-27 01:11:38 +00:00
|
|
|
os: [ubuntu-latest]
|
2020-10-22 01:15:14 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.toolchain }}
|
|
|
|
target: wasm32-unknown-unknown
|
|
|
|
override: true
|
|
|
|
|
2020-09-21 22:47:38 +00:00
|
|
|
- name: Check wasm
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: check
|
2020-10-22 01:15:14 +00:00
|
|
|
args: --target wasm32-unknown-unknown --no-default-features --features bevy_winit,x11,hdr,bevy_gltf
|
2020-09-21 22:47:38 +00:00
|
|
|
|
2020-11-03 19:32:48 +00:00
|
|
|
build-android:
|
2020-08-26 18:57:35 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-01-27 01:11:38 +00:00
|
|
|
- name: Install Android targets
|
|
|
|
run: rustup target add aarch64-linux-android armv7-linux-androideabi
|
|
|
|
- name: Install Cargo APK
|
|
|
|
run: cargo install cargo-apk
|
|
|
|
- name: Build APK
|
|
|
|
run: cargo apk build --example android
|
2021-02-22 04:50:05 +00:00
|
|
|
|
|
|
|
markdownlint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
# Full git history is needed to get a proper list of changed files within `super-linter`
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Run Markdown Lint
|
2021-04-13 02:56:29 +00:00
|
|
|
uses: github/super-linter@v3.15.5
|
2021-02-22 04:50:05 +00:00
|
|
|
env:
|
|
|
|
VALIDATE_ALL_CODEBASE: false
|
|
|
|
VALIDATE_MARKDOWN: true
|
|
|
|
DEFAULT_BRANCH: master
|
|
|
|
# Not needed here as only one Linter is used.
|
|
|
|
#GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2021-04-14 21:40:36 +00:00
|
|
|
|
|
|
|
run-examples:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update;
|
|
|
|
DEBIAN_FRONTEND=noninteractive sudo apt-get install --no-install-recommends -yq \
|
|
|
|
libasound2-dev libudev-dev wget unzip xvfb;
|
|
|
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
|
|
|
|
- name: Setup swiftshader
|
|
|
|
run: |
|
|
|
|
wget https://github.com/qarmin/gtk_library_store/releases/download/3.24.0/swiftshader.zip;
|
|
|
|
unzip swiftshader.zip;
|
|
|
|
curr="$(pwd)/libvk_swiftshader.so";
|
|
|
|
sed -i "s|PATH_TO_CHANGE|$curr|" vk_swiftshader_icd.json;
|
|
|
|
|
|
|
|
- name: Build bevy
|
|
|
|
run: |
|
|
|
|
cargo build --no-default-features --features "bevy_dynamic_plugin,bevy_gilrs,bevy_gltf,bevy_wgpu,bevy_winit,render,png,hdr,x11,bevy_ci_testing"
|
|
|
|
|
|
|
|
- name: Run examples
|
|
|
|
run: |
|
|
|
|
for example in .github/example-run/*.ron; do
|
|
|
|
example_name=`basename $example .ron`
|
|
|
|
echo "running $example_name - "`date`
|
|
|
|
time CI_TESTING_CONFIG=$example VK_ICD_FILENAMES=$(pwd)/vk_swiftshader_icd.json DRI_PRIME=0 xvfb-run cargo run --example $example_name --no-default-features --features "bevy_dynamic_plugin,bevy_gilrs,bevy_gltf,bevy_wgpu,bevy_winit,render,png,hdr,x11,bevy_ci_testing"
|
|
|
|
sleep 10
|
|
|
|
done
|