Skip to content

Release Libraries

Release Libraries #8

Workflow file for this run

name: "Release Libraries"
env:
RUST_VERSION: "1.73.0"
CROSS_VERSION: "0.2.4"
on:
workflow_dispatch:
inputs:
tag:
description: 'Create release with tag'
required: true
type: string
jobs:
build-swift-package:
name: Build Swift Package
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache cargo resources
uses: Swatinem/rust-cache@v2
with:
shared-key: deps
save-if: false
- name: Build library for macOS
if: "runner.os == 'macOS'"
run: |
cd uniffi
echo "TAG: ${{github.event.inputs.tag}}"
./build-release-apple-universal.sh
cd ..
checksum=$(swift package compute-checksum 'uniffi/output-frameworks/anoncreds-swift/libanoncreds.xcframework.zip')
echo "CHECKSUM: $checksum"
rm -f Package.swift
./.scripts/updatePackage.swift ${{github.event.inputs.tag}} $checksum './.scripts/TemplatePackage.swift' 'Package.swift'
- name: Commit package
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore: prepare release ${{github.event.inputs.tag}}"
tagging_message: ${{github.event.inputs.tag}}
- name: Upload library artifacts
uses: actions/upload-artifact@v3
with:
name: libanoncreds.xcframework.zip
path: 'uniffi/output-frameworks/anoncreds-swift/libanoncreds.xcframework.zip'
- name: Create library artifacts directory
run: |
mkdir release-artifacts
cp 'uniffi/output-frameworks/anoncreds-swift/libanoncreds.xcframework.zip' release-artifacts/
- name: Add swift package artifacts to release
uses: svenstaro/upload-release-action@v2
with:
tag: ${{github.event.inputs.tag}}
file: uniffi/output-frameworks/anoncreds-swift/libanoncreds.xcframework.zip
asset_name: "libanoncreds.xcframework.zip"
build-release:
needs: build-swift-package
name: Build Library
strategy:
matrix:
include:
- architecture: linux-aarch64
os: ubuntu-20.04
target: aarch64-unknown-linux-gnu
lib: libanoncreds_uniffi.so
libPath: uniffi/target/aarch64-unknown-linux-gnu/release/libanoncreds_uniffi.so
use_cross: true
- architecture: linux-x86_64
os: ubuntu-20.04
target: x86_64-unknown-linux-gnu
lib: libanoncreds_uniffi.so
libPath: uniffi/target/x86_64-unknown-linux-gnu/release/libanoncreds_uniffi.so
use_cross: true
- architecture: darwin-x86_64
os: macos-latest
target: x86_64-apple-darwin
lib: libanoncreds_uniffi.dylib
libPath: uniffi/target/x86_64-apple-darwin/release/libanoncreds_uniffi.dylib
- architecture: darwin-aarch64
os: macos-latest
target: aarch64-apple-darwin
lib: libanoncreds_uniffi.dylib
libPath: uniffi/target/aarch64-apple-darwin/release/libanoncreds_uniffi.dylib
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Rust toolchain
if: "matrix.target != 'swift-package-universal'"
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.RUST_VERSION }}
targets: ${{ matrix.target }}
- name: Cache cargo resources
uses: Swatinem/rust-cache@v2
with:
shared-key: deps
save-if: false
- name: Build library for Linux
if: "runner.os == 'Linux'"
run: |
cd uniffi
if [ -n "${{ matrix.use_cross }}" ]; then
cargo install --git https://github.com/cross-rs/cross --tag v${{ env.CROSS_VERSION }} cross
cross build --release --target ${{matrix.target}}
else
cargo build --release --target ${{matrix.target}}
fi
- name: Build library for macOS
if: "runner.os == 'macOS'"
run: |
cd uniffi
if [ "${{ matrix.architecture }}" == "swift-package-universal" ]; then
echo "TAG: ${{github.event.inputs.tag}}"
./build-release-apple-universal.sh
cd ..
checksum=$(swift package compute-checksum '${{matrix.libPath}}')
echo "CHECKSUM: $checksum"
rm Package.swift
./scripts/updatePackage.swift ${{github.event.inputs.tag}} $checksum '${{ matrix.libPath }}' 'Package.swift'
else
cargo build --release --target ${{matrix.target}}
fi
- name: Commit package
uses: stefanzweifel/git-auto-commit-action@v5
if: |
matrix.architecture != 'swift-package-universal'
with:
commit_message: "chore: prepare release ${{github.event.inputs.tag}}"
tagging_message: ${{github.event.inputs.tag}}
- name: Upload library artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.lib }}
path: ${{ matrix.libPath }}
- name: Create library artifacts directory
run: |
mkdir release-artifacts
cp ${{ matrix.libPath }} release-artifacts/
- name: Release artifacts
uses: a7ul/tar-action@v1.1.2
if: |
matrix.architecture != 'swift-package-universal'
with:
command: c
cwd: release-artifacts
files: .
outPath: "library-${{ matrix.architecture }}.tar.gz"
- name: Add library artifacts to release
if: |
matrix.architecture != 'swift-package-universal'
uses: svenstaro/upload-release-action@v2
with:
file: library-${{ matrix.architecture }}.tar.gz
asset_name: "library-${{ matrix.architecture }}-${{ github.sha }}.tar.gz"
- name: Add swift package artifacts to release
if: |
matrix.architecture == 'swift-package-universal'
uses: svenstaro/upload-release-action@v2
with:
file: ${{ matrix.libPath }}
asset_name: "${{ matrix.lib }}"