toolchain #41
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: toolchain | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
target: [mipsel-linux-uclibc, mipsel-linux-musl] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare | |
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: Build | |
run: | | |
make CT_TARGET=${CT_TARGET} CT_VERSION=${CT_VERSION} | |
cd crosstool-ng-${CT_VERSION}/toolchain-mipsel | |
tar cJf ../../${CT_TARGET}.tar.xz * | |
env: | |
CT_TARGET: ${{ matrix.target }} | |
CT_VERSION: 1.26.0 | |
working-directory: toolchain | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: toolchain | |
path: toolchain/${{ matrix.target }}.tar.xz | |
- uses: svenstaro/[email protected] | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: toolchain/${{ matrix.target }}.tar.xz | |
tag: toolchain | |
overwrite: true |