Skip to content

release: update release scripts to fix weirdness #174

release: update release scripts to fix weirdness

release: update release scripts to fix weirdness #174

name: Rust for Xous
on: [push]
jobs:
build-libstd:
runs-on: ubuntu-latest
steps:
- name: Setup riscv gnu/gcc toolchain
uses: gregdavill/[email protected]
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Determine Rust version
shell: bash
run: echo "##[set-output name=version;]$(echo ${GITHUB_REF} | cut -d/ -f3 | cut -d- -f1 | cut -d. -f1,2,3)"
id: extract_rust_version
- name: Install Rust toolchain v${{ steps.extract_rust_version.outputs.version }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ steps.extract_rust_version.outputs.version }}
default: true
override: true
target: riscv32imac-unknown-none-elf
- name: Install riscv32imac-unknown-xous-elf toolchain file
run: |
rm -rf $(rustc --print sysroot)/lib/rustlib/riscv32imac-unknown-xous-elf \
&& mkdir -p $(rustc --print sysroot)/lib/rustlib/riscv32imac-unknown-xous-elf/lib \
&& rustc --version | awk '{print $2}' > $(rustc --print sysroot)/lib/rustlib/riscv32imac-unknown-xous-elf/RUST_VERSION
- name: Build Rust libstd
run: |
export RUST_COMPILER_RT_ROOT=$(pwd)/src/llvm-project/compiler-rt \
&& rm -rf target \
&& cargo build \
--target riscv32imac-unknown-xous-elf \
-Zbinary-dep-depinfo \
--release \
--features "panic-unwind llvm-libunwind backtrace compiler-builtins-c compiler-builtins-mem" \
--manifest-path "library/sysroot/Cargo.toml" \
&& cp target/riscv32imac-unknown-xous-elf/release/deps/*.rlib $(rustc --print sysroot)/lib/rustlib/riscv32imac-unknown-xous-elf/lib \
&& (dest=$(pwd) && cd $(rustc --print sysroot) && zip -r ${dest}/riscv32imac-unknown-xous_${{ steps.extract_rust_version.outputs.version }}.zip lib/rustlib/riscv32imac-unknown-xous-elf/)
env:
CARGO_PROFILE_RELEASE_DEBUG: 2
CARGO_PROFILE_RELEASE_OPT_LEVEL: 3
CARGO_PROFILE_RELEASE_DEBUG_ASSERTIONS: false
RUSTC_BOOTSTRAP: 1
RUSTFLAGS: -Csymbol-mangling-version=legacy -Zunstable-options -Zmacro-backtrace -Clink-args=-Wl,-z,origin -Clink-args=-Wl,-rpath,$ORIGIN/../lib -Csplit-debuginfo=off -Cprefer-dynamic -Cllvm-args=-import-instr-limit=10 -Zinline-mir -Cembed-bitcode=yes -Clto=off -Cforce-unwind-tables=yes
__CARGO_DEFAULT_LIB_METADATA: stablestd
CC: riscv-none-embed-gcc
AR: riscv-none-embed-ar
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
riscv32imac-unknown-xous_${{ steps.extract_rust_version.outputs.version }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}