mirror of
https://github.com/bdwgc/bdwgc-rust.git
synced 2026-05-30 02:18:57 -06:00
@@ -1,15 +0,0 @@
|
|||||||
version: 2
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
docker:
|
|
||||||
- image: rustlang/rust:nightly
|
|
||||||
steps:
|
|
||||||
- run: apt -y update --fix-missing
|
|
||||||
- run: apt -y install cmake
|
|
||||||
- checkout
|
|
||||||
- run: git submodule update --init --recursive
|
|
||||||
- run: cargo build
|
|
||||||
- run: cd examples && ./test.sh
|
|
||||||
- run: |
|
|
||||||
git clean -dfx
|
|
||||||
cargo build --no-default-features --features cmake
|
|
||||||
30
.github/workflows/test.yaml
vendored
Normal file
30
.github/workflows/test.yaml
vendored
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
name: test
|
||||||
|
on:
|
||||||
|
- push
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
- uses: actions-rs/toolchain@v1
|
||||||
|
- uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: build
|
||||||
|
- uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: fmt
|
||||||
|
args: -- --check
|
||||||
|
- uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: clippy
|
||||||
|
- uses: actions-rs/audit-check@v1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- run: |
|
||||||
|
cd examples
|
||||||
|
./test.sh
|
||||||
|
- run: |
|
||||||
|
git clean -dfx
|
||||||
|
cargo build --no-default-features --features cmake
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
# bdwgc-alloc
|
# bdwgc-alloc
|
||||||
|
|
||||||
[](https://circleci.com/gh/raviqqe/bdwgc-alloc)
|
[](https://github.com/raviqqe/bdwgc-alloc/actions)
|
||||||
[](https://crates.io/crates/bdwgc-alloc)
|
[](https://crates.io/crates/bdwgc-alloc)
|
||||||
[](LICENSE)
|
[](LICENSE)
|
||||||
|
|
||||||
|
|||||||
1
rust-toolchain
Normal file
1
rust-toolchain
Normal file
@@ -0,0 +1 @@
|
|||||||
|
stable
|
||||||
Reference in New Issue
Block a user