From 1f464381a2d613b999707aa5b6709be535f2c6cf Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Sun, 15 Nov 2020 18:04:38 +0200 Subject: [PATCH] Add windows workflow to actions --- .github/workflows/windows.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/windows.yml diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 0000000..78b6436 --- /dev/null +++ b/.github/workflows/windows.yml @@ -0,0 +1,15 @@ +name: windows +on: [push] +jobs: + compile: + runs-on: windows-latest + env: + OF_URL: https://openframeworks.cc/versions/v0.11.0/of_v0.11.0_msys264_release.zip + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 1 + - run: mkdir .ofxPiMapper + - run: mv ./* .ofxPiMapper/ + - run: wget ${OF_URL} --tries=10 --quiet + - run: pwd && ls -al