Skip to content

toolchain

toolchain #2

Workflow file for this run

name: toolchain
on:
workflow_dispatch:
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Prepare environment
run: |
sudo apt update
sudo apt install unzip libtool-bin curl cmake gperf gawk flex bison nano xxd \
fakeroot kmod cpio git python3-docutils gettext automake autopoint \
texinfo build-essential help2man pkg-config zlib1g-dev libgmp3-dev \
libmpc-dev libmpfr-dev libncurses5-dev libltdl-dev wget libc-dev-bin
- name: Start Build
run: |
make toolchain/build
cd toolchain-mipsel/toolchain-4.4.x
tar cJf ../mipsel-linux-uclibc-gcc10.tar.xz *
- uses: actions/upload-artifact@v3
with:
name: toolchain
path: toolchain-mipsel/mipsel-linux-uclibc-gcc10.tar.xz
- uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: toolchain-mipsel/mipsel-linux-uclibc-gcc10.tar.xz
tag: toolchain
overwrite: true