Skip to content

build: use a single Makefile #168

build: use a single Makefile

build: use a single Makefile #168

Workflow file for this run

name: Build
on:
push:
paths-ignore: ['**/*.md']
pull_request:
branches: [main]
paths-ignore: ['**/*.md']
jobs:
setup:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Bundle WebUI Client
shell: bash
run: |
pnpm i -g esbuild
esbuild --bundle --target="chrome90,firefox90,safari15" --format=esm --tree-shaking=false --outdir=./src/client ./src/client/webui.ts
cd src
xxd -i client/webui.js client/webui.h
- uses: actions/cache@v3
with:
path: src/client/webui.h
key: ${{ runner.os }}-${{ github.sha }}-client
windows:
needs: setup
runs-on: windows-latest
strategy:
matrix:
compiler: [GCC, MSVC]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/cache/restore@v3
with:
path: src/client/webui.h
key: ${{ runner.os }}-${{ github.sha }}-client
fail-on-cache-miss: true
- uses: microsoft/[email protected]
- if: ${{ matrix.compiler == 'MSVC' }}
uses: ilammy/msvc-dev-cmd@v1
- name: Build
run: |
cd build\/${{ runner.os }}\${{ matrix.compiler }}
if ('${{ matrix.compiler }}' -eq 'MSVC') {
nmake
} else {
mingw32-make
}
- name: Prepare Artifacts
shell: bash
run: |
rm build/${{ runner.os }}/README.md
rm build/${{ runner.os }}/${{ matrix.compiler }}/Makefile
cp -r include build/${{ runner.os }}/${{ matrix.compiler }}
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}-${{ matrix.compiler }}
path: build/${{ runner.os }}/${{ matrix.compiler }}
linux:
needs: setup
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [GCC, Clang]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/cache/restore@v3
with:
path: src/client/webui.h
key: ${{ runner.os }}-${{ github.sha }}-client
fail-on-cache-miss: true
- name: Build
run: |
cd build//${{ runner.os }}/${{ matrix.compiler }}
if [ "${{ matrix.compiler }}" == "Clang" ]; then
sudo ln -s llvm-ar-13 /usr/bin/llvm-ar
sudo ln -s llvm-ranlib-13 /usr/bin/llvm-ranlib
fi
make
- name: Prepare Artifacts
run: |
rm build/${{ runner.os }}/README.md
rm build/${{ runner.os }}/${{ matrix.compiler }}/Makefile
cp -r include build/${{ runner.os }}/${{ matrix.compiler }}
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}-${{ matrix.compiler }}
path: build/${{ runner.os }}/${{ matrix.compiler }}
macOS:
needs: setup
runs-on: macos-latest
name: macOS
strategy:
matrix:
compiler: [Clang]
steps:
- uses: actions/checkout@v3
- uses: actions/cache/restore@v3
with:
path: src/client/webui.h
key: ${{ runner.os }}-${{ github.sha }}-client
fail-on-cache-miss: true
- name: Build
run: |
cd build//${{ runner.os }}/${{ matrix.compiler }}
make
- name: Prepare Artifacts
run: |
rm build/${{ runner.os }}/README.md
rm build/${{ runner.os }}/${{ matrix.compiler }}/Makefile
cp -r include build/${{ runner.os }}/${{ matrix.compiler }}
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}-${{ matrix.compiler }}
path: build/${{ runner.os }}/${{ matrix.compiler }}