Initial Commit

This commit is contained in:
Roland Rabien 2020-05-20 16:44:46 -07:00
commit 73110bbde2
20 changed files with 2600 additions and 0 deletions

25
.github/workflows/build_windows.yaml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Build Windows
on: [push]
jobs:
build:
name: Build Windows
runs-on: windows-latest
steps:
- name: Fix up git URLs
run: echo -e '[url "https://github.com/"]\n insteadOf = "git@github.com:"' >> ~/.gitconfig
shell: bash
- uses: actions/checkout@v1
with:
token: ${{ secrets.ACCESS_TOKEN }}
submodules: true
- name: "Run script"
run: |
export OS="win"
./ci/build.sh
shell: bash
env:
APIKEY: ${{ secrets.APIKEY }}
- uses: actions/upload-artifact@v2
with:
name: VirtualAnalog_Win
path: ci/bin/VirtualAnalog_Win.zip