Bump dependency to SDCC 4.4 #38
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 and Test | |
on: | |
push: | |
branches-ignore: | |
- 'master' | |
jobs: | |
linux: | |
name: Linux build | |
runs-on: ubuntu-latest | |
env: | |
PREFIX: "/usr" | |
GNU_MIRROR: "https://mirror.checkdomain.de/gnu" | |
NEWLIB_MIRROR: "https://ftp.gwdg.de/pub/linux/sources.redhat.com" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Dependencies | |
run: > | |
sudo apt-get install pkg-config gcc g++ flex bison gawk | |
gettext bzip2 lzma xz-utils libboost-dev libexpat1-dev | |
libgc-dev libgmp-dev zlib1g-dev libipt-dev libmpc-dev | |
libmpfr-dev libncurses5-dev libreadline-dev texinfo | |
- name: Build | |
run: ./.github/scripts/build.sh | |
macos: | |
name: macOS build | |
runs-on: macos-latest | |
env: | |
PREFIX: "/usr/local/ngdevkit" | |
GNU_MIRROR: "https://mirror.checkdomain.de/gnu" | |
NEWLIB_MIRROR: "https://ftp.gwdg.de/pub/linux/sources.redhat.com" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Dependencies | |
run: > | |
brew install autoconf automake bison boost bzip2 coreutils gawk | |
libtool make pkg-config readline texinfo expat flex gettext | |
gmp gnu-sed libmpc mpfr ncurses xz zlib | |
- name: Build | |
run: ./.github/scripts/build.sh |