Skip to content

seperate lwip_debug from printf modification and file logging #46

seperate lwip_debug from printf modification and file logging

seperate lwip_debug from printf modification and file logging #46

Workflow file for this run

name: Build lwIP-CE Project
on:
push:
branches:
- master
paths:
- src/*
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [ 'cpp' ]
steps:
- name: Checkout code
uses: actions/checkout@main
- name: Fetch submodules
run: git submodule update --init --recursive
- name: Get repository information
uses: actions/github-script@v6
with:
script: |
const repo = context.payload.repository.full_name;
console.log(`The repository is ${repo}`);
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y make tar
- name: Download and extract CEdev
run: |
curl -sL github.com/CE-Programming/toolchain/releases/download/v11.2/CEdev-Linux.tar.gz | tar xz
- name: Add CEdev to PATH
run: |
echo "CEdev/bin" >> $GITHUB_PATH
echo $GITHUB_PATH
- name: Make GFX
run: make gfx
# build program
- name: Make Build
run: make
- name: Upload bin directory
uses: actions/upload-artifact@v3
with:
name: lwipce-demo
path: bin/