Skip to content

V86-WASI Release Mac #8

V86-WASI Release Mac

V86-WASI Release Mac #8

Workflow file for this run

on:
release:
types: [created]
workflow_dispatch:
name: V86-WASI Release Mac
jobs:
v86-wasi:
strategy:
matrix:
include:
- build: macos
os: macos-latest
rust: stable
target: x86_64-apple-darwin
arch: x86_64
- build: macos_arm64
os: macos-latest
rust: stable
target: aarch64-apple-darwin
arch: aarch64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Get release
id: get_release
uses: bruceadams/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: rustup target add aarch64-apple-darwin
- name: Build v86-wasi
uses: actions-rs/cargo@v1
with:
use-cross: false
command: build
args: --release --target ${{ matrix.target }}
- name: Remove File
uses: JesseTG/[email protected]
with:
path: target/${{ matrix.target }}/release/.fingerprint
- name: Remove File
uses: JesseTG/[email protected]
with:
path: target/${{ matrix.target }}/release/examples
- name: Remove File
uses: JesseTG/[email protected]
with:
path: ttarget/${{ matrix.target }}/release/build
- name: Remove File
uses: JesseTG/[email protected]
with:
path: target/${{ matrix.target }}/release/incremental
- name: Remove File
uses: JesseTG/[email protected]
with:
path: target/${{ matrix.target }}/release/examples
- name: Remove File
uses: JesseTG/[email protected]
with:
path: target/${{ matrix.target }}/release/deps
- name: move Archive
run: |
echo "test"
cp -r term target/release
cp -r arch target/release
- name: Archive Release
uses: thedoctor0/zip-release@main
with:
type: "tar"
filename: ${{github.workspace}}/v86-wasi.${{ matrix.os }}.${{ matrix.arch }}.tar.gz
directory: target/${{ matrix.target }}/release
path: .
- name: upload artifact
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ github.token }}
with:
files: |
${{github.workspace}}/v86-wasi.${{ matrix.os }}.${{ matrix.arch }}.tar.gz