Skip to content

Commit

Permalink
Optimize CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ttytm committed Aug 21, 2023
1 parent 900d967 commit cd76099
Show file tree
Hide file tree
Showing 4 changed files with 193 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI
on:
push:
paths-ignore: ['**/*.md']
pull_request:
branches: [main]
paths-ignore: ['**/*.md']

jobs:
windows:
uses: ./.github/workflows/windows.yml
permissions:
contents: write

linux:
uses: ./.github/workflows/linux.yml
permissions:
contents: write

macos:
uses: ./.github/workflows/macos.yml
permissions:
contents: write
57 changes: 57 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Linux
on:
workflow_call:

jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Bundle WebUI Bridge
run: |
npm i -g esbuild
bridge/build.sh
- uses: actions/cache@v3
with:
path: bridge/webui_bridge.h
key: ${{ runner.os }}-${{ github.sha }}-bridge

build-release:
needs: setup
runs-on: ubuntu-latest
permissions:
contents: write
strategy:
matrix:
compiler: [GCC, Clang]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/cache/restore@v3
with:
path: bridge/webui_bridge.h
key: ${{ runner.os }}-${{ github.sha }}-bridge
fail-on-cache-miss: true
- name: Build
run: |
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 Artifact
run: |
cp -r include dist
artifact=${{ runner.os }}-${{ matrix.compiler }}-x64
# Add the ARTIFACT name(`,,` ^= lowercase shell param) as GitHub environment variable.
echo "ARTIFACT=${artifact,,}" >> $GITHUB_ENV
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ env.ARTIFACT }}
path: dist
- name: Release Artifact
if: github.ref_type == 'tag'
uses: softprops/action-gh-release@v1
with:
files: ${{ env.ARTIFACT }}
53 changes: 53 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: macOS
on:
workflow_call:

jobs:
setup:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Bundle WebUI Bridge
run: |
npm i -g esbuild
bridge/build.sh
- uses: actions/cache@v3
with:
path: bridge/webui_bridge.h
key: ${{ runner.os }}-${{ github.sha }}-bridge

macOS:
needs: setup
runs-on: macos-latest
name: macOS
permissions:
contents: write
strategy:
matrix:
compiler: [Clang]
steps:
- uses: actions/checkout@v3
- uses: actions/cache/restore@v3
with:
path: bridge/webui_bridge.h
key: ${{ runner.os }}-${{ github.sha }}-bridge
fail-on-cache-miss: true
- name: Build
run: |
make
- name: Prepare Artifacts
run: |
cp -r include dist
# Add the ARTIFACT name(lowercased) as GitHub environment variable.
artifact=$(echo ${{ runner.os }}-${{ matrix.compiler }}-x64 | tr '[:upper:]' '[:lower:]')
echo "ARTIFACT=$artifact" >> $GITHUB_ENV
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ env.ARTIFACT }}
path: dist
- name: Release Artifact
if: github.ref_type == 'tag'
uses: softprops/action-gh-release@v1
with:
files: ${{ env.ARTIFACT }}
60 changes: 60 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Windows
on:
workflow_call:

jobs:
setup:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Bundle WebUI Bridge
run: bridge/build.ps1
- uses: actions/cache@v3
with:
path: bridge/webui_bridge.h
key: ${{ runner.os }}-${{ github.sha }}-bridge

build-release:
needs: setup
runs-on: windows-latest
permissions:
contents: write
strategy:
matrix:
compiler: [GCC, MSVC]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/cache/restore@v3
with:
path: bridge/webui_bridge.h
key: ${{ runner.os }}-${{ github.sha }}-bridge
fail-on-cache-miss: true
- uses: microsoft/[email protected]
- if: ${{ matrix.compiler == 'MSVC' }}
uses: ilammy/msvc-dev-cmd@v1
- name: Build
run: |
mkdir dist
if ('${{ matrix.compiler }}' -eq 'MSVC') {
nmake -f ./Makefile.nmake
} else {
mingw32-make
}
- name: Prepare Artifact
shell: bash
run: |
cp -r include dist
artifact=${{ runner.os }}-${{ matrix.compiler }}-x64
# Add the ARTIFACT name(`,,` ^= lowercase shell param) as GitHub environment variable.
echo "ARTIFACT=${artifact,,}" >> $GITHUB_ENV
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: ${{ env.ARTIFACT }}
path: dist
- name: Release Artifact
if: github.ref_type == 'tag'
uses: softprops/action-gh-release@v1
with:
files: ${{ env.ARTIFACT }}

0 comments on commit cd76099

Please sign in to comment.