Gcc: install libraries into lib, rather than lib64 #912
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: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, reopened] | |
branches: | |
- master | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
full-build-i686: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
- run: apt-get update | |
- run: apt-get install apt-transport-https ca-certificates -y | |
- run: update-ca-certificates | |
- run: apt install -y gcc make autoconf g++ gnat-14 texinfo libmpfr-dev libgmp-dev wget bzip2 git xz-utils sudo libmpc-dev zlib1g-dev bison flex gawk autopoint libtool fakeroot mount parted gettext meson udev python3-cryptography | |
- run: ln -sf /usr/bin/gnatmake-14 /usr/bin/gnatmake | |
- run: ln -sf /usr/bin/gnatbind-14 /usr/bin/gnatbind | |
- run: ln -sf /usr/bin/gnatlink-14 /usr/bin/gnatlink | |
- run: ln -sf /usr/bin/gnatls-14 /usr/bin/gnatls | |
- run: bash cleanup.sh | |
- run: bash download.sh | |
- run: bash bootstrap.sh | |
- run: BUILD_TYPE=full bash compile.sh | |
- run: bash create-image.sh | |
full-build-x86_64: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
- run: apt install -y gcc make autoconf g++ gnat-14 texinfo libmpfr-dev libgmp-dev wget bzip2 git xz-utils sudo libmpc-dev zlib1g-dev bison flex gawk autopoint libtool fakeroot mount parted gettext python3-cryptography | |
- run: ln -sf /usr/bin/gnatmake-14 /usr/bin/gnatmake | |
- run: ln -sf /usr/bin/gnatbind-14 /usr/bin/gnatbind | |
- run: ln -sf /usr/bin/gnatlink-14 /usr/bin/gnatlink | |
- run: ln -sf /usr/bin/gnatls-14 /usr/bin/gnatls | |
- run: bash cleanup.sh | |
- run: bash download.sh | |
- run: CPU=x86_64 bash bootstrap.sh | |
- run: CPU=x86_64 BUILD_TYPE=full bash compile.sh | |
kernel-x86_64_32: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
- run: apt install -y gcc make autoconf g++ texinfo libmpfr-dev libgmp-dev wget bzip2 git xz-utils sudo libmpc-dev zlib1g-dev bison flex gawk autopoint libtool fakeroot mount parted gettext | |
- run: bash cleanup.sh | |
- run: bash download.sh | |
- run: USER32="true" CPU=x86_64 bash bootstrap-kernel.sh |