-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update to latest dotnet version * Update webview.yaml * Add CMakePreset.json * Update webview.yaml * Update webview.yaml * Change windows build * Update libraries * Update README.md * Update CHANGELOG.md
- Loading branch information
Showing
17 changed files
with
23,796 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,10 +10,13 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- name: Install dependencies | ||
run: sudo apt-get update && sudo apt-get install libwebkit2gtk-4.0-dev xvfb -y | ||
- name: Build webview native | ||
uses: ashutoshvarma/action-cmake-build@v1 | ||
- name: Get CMake | ||
uses: lukka/get-cmake@latest | ||
- name: Run CMake | ||
uses: lukka/run-cmake@v10 | ||
with: | ||
build-dir: ./build | ||
configurePreset: 'ninja' | ||
buildPreset: 'ninja' | ||
- name: Upload artifact | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -24,10 +27,13 @@ jobs: | |
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build webview native | ||
uses: ashutoshvarma/action-cmake-build@v1 | ||
- name: Get CMake | ||
uses: lukka/get-cmake@latest | ||
- name: Run CMake | ||
uses: lukka/run-cmake@v10 | ||
with: | ||
build-dir: ./build | ||
configurePreset: 'ninja' | ||
buildPreset: 'ninja' | ||
- name: Upload artifact | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -38,10 +44,14 @@ jobs: | |
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build webview native | ||
uses: ashutoshvarma/action-cmake-build@v1 | ||
- uses: GuillaumeFalourd/[email protected] | ||
- name: Get CMake | ||
uses: lukka/get-cmake@latest | ||
- name: Run CMake | ||
uses: lukka/run-cmake@v10 | ||
with: | ||
build-dir: ./build | ||
configurePreset: 'windows' | ||
buildPreset: 'windows' | ||
- name: Upload artifact | ||
uses: actions/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"version": 3, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 21, | ||
"patch": 0 | ||
}, | ||
"configurePresets": [ | ||
{ | ||
"name": "ninja", | ||
"displayName": "Ninja Configure Settings", | ||
"description": "Sets build and install directories", | ||
"binaryDir": "${sourceDir}/build", | ||
"generator": "Ninja" | ||
}, | ||
{ | ||
"name": "windows", | ||
"displayName": "Windows Configure Settings", | ||
"description": "Sets build and install directories", | ||
"binaryDir": "${sourceDir}/build", | ||
"generator": "Visual Studio 17 2022" | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "ninja", | ||
"configurePreset": "ninja", | ||
"displayName": "Build with Ninja", | ||
"description": "Build with Ninja" | ||
}, | ||
{ | ||
"name": "windows", | ||
"configurePreset": "windows", | ||
"displayName": "Build with Visual Studio", | ||
"description": "Build with Visual Studio" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.