Skip to content

Commit

Permalink
Merge pull request #3 from niklasdewally/main
Browse files Browse the repository at this point in the history
  • Loading branch information
ozgurakgun authored Sep 27, 2023
2 parents 146510b + e4cb7bd commit f413dfa
Show file tree
Hide file tree
Showing 15 changed files with 660 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/minion-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# https://doc.rust-lang.org/cargo/guide/continuous-integration.html
name: 'solvers/minion'
on:
push:
paths:
- 'solvers/minion/**'
pull_request:
paths:
- 'solvers/minion/**'
workflow_dispatch:

jobs:
ubuntu:
name: 'solvers/minion: Ubuntu Build'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- working-directory: ./solvers/minion
run: rustup update stable && rustup default stable

- working-directory: ./solvers/minion
run: cargo build --verbose

mac:
name: 'solvers/minion: Mac Build'
runs-on: macos-latest
steps:
- uses: actions/checkout@v2

- working-directory: ./solvers/minion
run: rustup update stable && rustup default stable

- working-directory: ./solvers/minion
run: rustup target add aarch64-apple-darwin

- working-directory: ./solvers/minion
run: cargo build --verbose

tests:
name: 'solvers/minion: Tests'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- working-directory: ./solvers/minion
run: rustup update stable && rustup default stable

- working-directory: ./solvers/minion
run: cargo test






1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "minion-bindings/vendor"]
path = solvers/minion/vendor
url = https://github.com/niklasdewally/minion
branch = conjure-oxide-devel
Loading

0 comments on commit f413dfa

Please sign in to comment.