Skip to content

Commit

Permalink
debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Nan committed Jan 7, 2024
1 parent 15648a7 commit 086abf2
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
version: 2.1

jobs:
deterministic_x86_64:
filters:
branches:
only: [ "master", "test" ]
docker:
- image: cimg/rust:1.75.0
resource_class: medium
steps:
- checkout
- run: cargo --version && cargo test --release

deterministic_aarch64:
filters:
branches:
only: [ "master", "test" ]
docker:
- image: cimg/rust:1.75.0
resource_class: arm.medium
steps:
- checkout
- run: cargo --version && cargo test --release

workflows:
deterministic:
jobs:
- deterministic_x86_64
- deterministic_aarch64
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Main

on:
push:
branches: [ "master", "test" ]
pull_request:
branches: [ "master", "test" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release
- name: Run tests
run: cargo test --release
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
![github actions](https://github.com/FenQiDian/ozz-animation-rs/actions/workflows/main.yml/badge.svg)
[![CircleCI](https://dl.circleci.com/status-badge/img/circleci/FydWtkGiDKrskUYY5Dwa1X/TorfFYVWfpUFa9BegTzrmo/tree/main.svg?style=shield)](https://dl.circleci.com/status-badge/redirect/circleci/FydWtkGiDKrskUYY5Dwa1X/TorfFYVWfpUFa9BegTzrmo/tree/main)

# ozz-animation-rust
A rust runtime library for ozz-animation with fixed-point support.

Expand Down

0 comments on commit 086abf2

Please sign in to comment.