Implement rupsc, clone of upsc (#5)

Fixes #4
This commit is contained in:
Aram Peres 2021-07-31 04:18:39 -04:00 committed by GitHub
parent 43121ce2ea
commit 8556a7ca0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 676 additions and 82 deletions

View file

@ -32,6 +32,7 @@ jobs:
strategy:
matrix:
target:
- x86_64-unknown-linux-gnu
- aarch64-unknown-linux-gnu
- arm-unknown-linux-gnueabihf
- armv7-unknown-linux-gnueabihf
@ -54,7 +55,13 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: build
args: --target ${{ matrix.target }}
args: --target ${{ matrix.target }} --release
- name: Archive rupsc binary
uses: actions/upload-artifact@v2
with:
name: rupsc-${{ matrix.target }}
path: target/${{ matrix.target }}/release/rupsc
test:
name: Test Suite