Skip to content

Commit

Permalink
Add pipeline (#1)
Browse files Browse the repository at this point in the history
* Add pipeline

Add pipeline that builds and tests on Ubuntu, MacOS and Windows using their respective stable toolchains
  • Loading branch information
Kitt3120 committed Nov 10, 2023
1 parent 78fc072 commit bec4a9b
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Build and test Linux, Mac and Windows versions for x86_64, x86, aarch64 and armv7 architectures on Ubuntu, MacOS and Windows each
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
env: [ubuntu-64, macos-64, windows-64]
include:
- env: ubuntu-64
os: ubuntu-latest
toolchain: stable-x86_64-unknown-linux-gnu
- env: macos-64
os: macos-latest
toolchain: stable-x86_64-apple-darwin
- env: windows-64
os: windows-latest
toolchain: stable-x86_64-pc-windows-msvc
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup toolchain ${{ matrix.toolchain }} for ${{ matrix.os }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- name: Build using ${{ matrix.toolchain }} for ${{ matrix.os }}
uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features
test:
name: Test
needs: build
runs-on: ${{ matrix.os }}
strategy:
matrix:
env: [ubuntu-64, macos-64, windows-64]
include:
- env: ubuntu-64
os: ubuntu-latest
toolchain: stable-x86_64-unknown-linux-gnu
- env: macos-64
os: macos-latest
toolchain: stable-x86_64-apple-darwin
- env: windows-64
os: windows-latest
toolchain: stable-x86_64-pc-windows-msvc
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Rust toolchain ${{ matrix.toolchain }} for ${{ matrix.os }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- name: Test using ${{ matrix.toolchain }} for ${{ matrix.os }}
uses: actions-rs/cargo@v1
with:
command: test
args: --release --all-features
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod common;

0 comments on commit bec4a9b

Please sign in to comment.