Skip to content

basdp is testing out GitHub Actions πŸš€ #23

basdp is testing out GitHub Actions πŸš€

basdp is testing out GitHub Actions πŸš€ #23

Workflow file for this run

name: Build with MinGW GCC
run-name: ${{ github.actor }} is testing out GitHub Actions πŸš€
on: [push]
jobs:
mingw64-x64:
name: Build Skia with MinGW GCC
runs-on: windows-latest
defaults:
run:
shell: bash
steps:
- name: "Setup"
run: |
gcc --version
clang --version
- name: "Clone skia"
run: git clone --depth 1 https://github.com/mono/skia.git
- name: "Build skia"
run: |
cd skia
python3 tools/git-sync-deps
python3 bin/fetch-ninja
tools/install_dependencies.sh
bin/gn gen out/lib --platform=mingw --args='is_debug=false is_official_build=true clang_win="C:/Program Files/LLVM" clang_win_version=18 is_trivial_abi=false'
ls -lah
third_party/ninja/ninja -C out/lib skia
cp --recursive include out/include
- name: Archive the build
uses: actions/upload-artifact@v4
with:
name: windows-mingw64-x64
path: out