Skip to content

Test makefile target #38

Test makefile target

Test makefile target #38

Workflow file for this run

name: Build
on:
push:
branches:
- main
- feature/*
pull_request:
branches:
- main
jobs:
linux-build:
name: Toolchain Linux build
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get -y install build-essential build-essential texinfo flex bison libmpfr-dev libgmp-dev libmpc-dev zip libdebuginfod-dev
- name: Build
run: |
mkdir build
cd build
export CFLAGS="-O2"
export CXXFLAGS="-O2"
export LDFLAGS="-static -s"
../configure --prefix /opt/gcc
make -j$(nproc) stamps/build-gcc-stage1
- name: Package
run: |
cd /opt/gcc
zip -r9 ../linux.zip .
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: tricore-gcc-artifacts
path: /opt/linux.zip
build-windows:
name: Toolchain Windows build
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: msys2/setup-msys2@v2
with:
msystem: UCRT64
update: true
install: zip mingw-w64-ucrt-x86_64-toolchain make mingw-w64-ucrt-x86_64-mpfr mingw-w64-ucrt-x86_64-gmp mingw-w64-ucrt-x86_64-mpc mingw-w64-ucrt-x86_64-texinfo flex bison
- name: Build
run: |
mkdir build
cd build
export CFLAGS="-O2"
export CXXFLAGS="-O2"
export LDFLAGS="-static -s"
../configure --prefix /opt/gcc
make -j$(nproc) stamps/build-gcc-stage1
- name: Package
run: |
cd /opt/gcc
zip -r9 ../win32.zip .
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: tricore-gcc-artifacts
path: /opt/win32.zip