macOS dylib (#16) #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build iOS | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Version Overwrite | |
required: false | |
push: | |
tags: | |
- "v*" | |
pull_request: | |
env: | |
VERSION: ${{ github.event.inputs.version || (startsWith(github.ref, 'refs/tags/') && github.ref || '') }} | |
jobs: | |
binding_arm7: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.14.15' | |
- name: Build Go | |
run: ./go.sh 1.14.15 fastrsa | |
- name: Build | |
run: | | |
export PATH="/tmp/go/bin:$PATH" | |
make binding_ios_armv7 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: output_binding_arm7 | |
path: output | |
retention-days: 1 | |
binding: | |
runs-on: macos-13 | |
needs: binding_arm7 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/download-artifact@v2 | |
with: | |
name: output_binding_arm7 | |
path: output | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '^1.21' | |
- name: Build Go | |
run: ./go.sh 1.21.0 fastrsa | |
- name: Build | |
run: | | |
export PATH="/tmp/go/bin:$PATH" | |
make binding_ios | |
- name: Compress | |
run: tar -czvf output.tar.gz -C output/binding/ios . | |
- if: ${{ env.VERSION!='' }} | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
asset_name: librsa_bridge_ios_$tag.tar.gz | |
file: output.tar.gz | |
tag: ${{ env.VERSION }} | |
overwrite: true | |
- if: ${{ env.VERSION=='' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: librsa_bridge_ios | |
path: output.tar.gz |