Skip to content

Update to latest version of UniFFI #1

Update to latest version of UniFFI

Update to latest version of UniFFI #1

Workflow file for this run

name: C#
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
container:
image: rust:1.72-bullseye
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Build
run: |
cargo build --release --package uniffi-bindgen-cs
binding-unit-tests:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:6.0
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Test
run: ./run_unit_tests.sh
test-bindings:
runs-on: ubuntu-latest
container:
image: ghcr.io/nordsecurity/uniffi-bindgen-cs-test-runner:v0.1.0
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Test bindings
shell: bash
env:
# Github sets HOME to /github/home and breaks dependencies in Docker image..
# https://github.com/actions/runner/issues/863
HOME: /root
run: |
source ~/.bashrc
./build.sh
./generate_bindings.sh
./test_bindings.sh