Skip to content

Fix memory leak in FfiConverterString (#17) #65

Fix memory leak in FfiConverterString (#17)

Fix memory leak in FfiConverterString (#17) #65

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
container:
image: rust:1.64
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Build
run: ./build.sh
- uses: actions/upload-artifact@v3
with:
path: |
target/debug/libuniffi_fixtures.so
target/debug/uniffi-bindgen-go
test-bindings:
runs-on: ubuntu-latest
container:
image: golang:1.20
needs: build
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- uses: actions/download-artifact@v3
with:
name: artifact
path: target/debug
- name: Test
run: |
chmod +x target/debug/uniffi-bindgen-go
./test_bindings.sh