Skip to content

Update webview

Update webview #24

Workflow file for this run

name: WebviewNative
on:
push:
branches: [feature-nativeUpdate]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install libwebkit2gtk-4.0-dev xvfb -y
- name: Get CMake
uses: lukka/get-cmake@latest
- name: Run CMake
uses: lukka/run-cmake@v10
with:
configurePreset: 'ninja'
buildPreset: 'ninja'
- name: Upload artifact
uses: actions/[email protected]
with:
name: "webview-linux64"
path: ./build
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Get CMake
uses: lukka/get-cmake@latest
- name: Run CMake
uses: lukka/run-cmake@v10
with:
configurePreset: 'ninja'
buildPreset: 'ninja'
- name: Upload artifact
uses: actions/[email protected]
with:
name: "webview-mac64"
path: ./build
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: GuillaumeFalourd/[email protected]
- name: Get CMake
uses: lukka/get-cmake@latest
- name: Run CMake
uses: lukka/run-cmake@v10
with:
configurePreset: 'windows'
buildPreset: 'windows'
- name: Upload artifact
uses: actions/[email protected]
with:
name: "webview-win64"
path: ./build