Skip to content

migtd: bump to v0.2.3 #20

migtd: bump to v0.2.3

migtd: bump to v0.2.3 #20

Workflow file for this run

on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
workflow_dispatch:
name: Library Crates
env:
AS: nasm
AR: llvm-ar
CC: clang
NIGHTLY_RUST_TOOLCHAIN: nightly-2022-11-15
TOOLCHAIN_PROFILE: minimal
jobs:
lib-test:
name: Build Library Crates
runs-on: ubuntu-20.04
timeout-minutes: 30
steps:
# Install first since it's needed to build NASM
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
with:
version: "10.0"
directory: ${{ runner.temp }}/llvm
- name: install NASM
uses: ilammy/setup-nasm@v1
- name: Install tools for sgx lib
run: sudo apt-get install build-essential ocaml ocamlbuild automake autoconf libtool wget python-is-python3 libssl-dev git cmake perl
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: ${{ env.TOOLCHAIN_PROFILE }}
toolchain: ${{ env.NIGHTLY_RUST_TOOLCHAIN }}
override: true
- name: Checkout sources
uses: actions/checkout@v2
with:
submodules: recursive
- name: Preparation work
run: bash sh_script/preparation.sh
- name: Build library crates
run: cargo xtask lib-build
- name: Test library crates
run: cargo xtask lib-test