Skip to content

huuurghh

huuurghh #14

Workflow file for this run

name: Linux build
on:
push:
branches: [master, byupdate]
jobs:
linux-build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: i686-unknown-linux-gnu
override: true
- name: Install g++-multilib
run: |
sudo apt update
sudo apt install g++-multilib -y
- name: Build auxmos
run: cargo build --target=i686-unknown-linux-gnu --release --features "all_reaction_hooks katmos"
- uses: actions/upload-artifact@v2
with:
name: Linux compile
path: target/i686-unknown-linux-gnu/release/libauxmos.*
- name: Check dependencies
run: ldd target/i686-unknown-linux-gnu/release/libauxmos.so