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 3e8bb6d
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2.1

jobs:
linux_x86_64:
docker:
- image: cimg/rust:1.75.0
resource_class: x86.medium
steps:
- checkout
- run: cargo --version && cargo test --release

linux_aarch64:
docker:
- image: cimg/rust:1.75.0
resource_class: arm.medium
steps:
- checkout
- run: cargo --version && cargo test --release

workflows:
deterministic:
jobs:
- linux_x86_64
- linux_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://circleci.com/gh/cci-jyo5z/ozz-animation-rs.svg?style=shield)](https://github.com/FenQiDian/ozz-animation-rs)

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

Expand Down

0 comments on commit 3e8bb6d

Please sign in to comment.