v0.0.13: GCC 13 #55
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: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
release: | |
types: | |
- published | |
jobs: | |
build-ct-ng: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- target: x86_64-multilib-linux-musl | |
- target: arm-unknown-linux-musleabihf | |
- target: aarch64-unknown-linux-musl | |
steps: | |
- name: Download crosstool-ng | |
uses: actions/checkout@v2 | |
with: | |
repository: crosstool-ng/crosstool-ng | |
ref: 810021d9125a66f6a7cd0862d59aab3d32252a9f | |
# ==== DEPENDENCIES ==== | |
- name: Install crosstool-ng dependencies | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
run: | | |
sudo apt-get install -y --no-install-recommends gcc g++ gperf bison flex texinfo help2man make libncurses5-dev python3-dev autoconf automake libtool libtool-bin gawk wget bzip2 xz-utils unzip patch libstdc++6 rsync git | |
# ==== BUILD CROSSTOOL-NG FROM SOURCE ==== | |
- name: Bootstrap | |
run: ./bootstrap | |
- name: Configure | |
run: | | |
./configure --prefix=$HOME/crosstool-ng | |
- name: Make | |
run: make | |
- name: Make install | |
run: make install | |
# ==== BUILD TOOLCHAIN ==== | |
- name: Get Repo | |
uses: actions/checkout@v2 | |
- name: Build toolchain | |
run: | | |
export PATH=$PATH:$HOME/crosstool-ng/bin | |
ls -la | |
cd ${{ matrix.config.target }} | |
ct-ng build | |
chmod +w $HOME/x-tools/${{ matrix.config.target }} | |
cp toolchain* $HOME/x-tools/${{ matrix.config.target }} | |
# ==== PACKAGE ==== | |
- name: Package | |
run: tar cJf ${{ matrix.config.target }}.tar.xz -C $HOME/x-tools ${{ matrix.config.target }} | |
- name: Upload | |
uses: actions/upload-artifact@v1 | |
with: | |
name: ${{ matrix.config.target }} | |
path: ${{ matrix.config.target }}.tar.xz | |
- name: Upload Release | |
if: github.event.action == 'published' | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: ${{ matrix.config.target }}.tar.xz | |
asset_name: ${{ matrix.config.target }}.tar.xz | |
asset_content_type: application/x-tar |