WIP: Android kotlin #52
Workflow file for this run
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
name: Build Windows (Libretro) | |
on: [push,pull_request] | |
jobs: | |
build-and-deploy: | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
- name: Get latest CMake and ninja | |
# Using 'latest' branch, the most recent CMake and ninja are installed. | |
uses: lukka/get-cmake@latest | |
- name: Build 🔧 | |
run: | | |
mkdir build | |
cd build | |
cmake -G "Visual Studio 16 2019" -A x64 -DCMAKE_SYSTEM_VERSION=10.0.19041.0 .. | |
cmake --build . --config Release --target skyemu_libretro | |
mkdir skyemu_libretro_zip | |
mv bin/Release/skyemu_libretro.dll skyemu_libretro_zip | |
cp ../skyemu_libretro.info skyemu_libretro_zip | |
Compress-Archive -Destination skyemu_libretro.zip -Path skyemu_libretro_zip | |
- name: GH Release 🚀 | |
# You may pin to the exact commit or the version. | |
uses: actions/upload-artifact@v2 | |
with: | |
name: WindowsRelease (Libretro) | |
path: build/skyemu_libretro.zip | |
#uses: softprops/[email protected] | |
#with: | |
# # Note-worthy description of changes in release | |
# # body: # optional | |
# # Path to load note-worthy description of changes in release from | |
# # body_path: # optional | |
# # Gives the release a custom name. Defaults to tag name | |
# name: LinuxRelease | |
# # Identify the release as a prerelease. Defaults to false | |
# prerelease: True | |
# # Newline-delimited list of path globs for asset files to upload | |
# files: build/bin/* | |