Fix CI #103
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: Windows (MXE/MinGW) | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup | |
run: sudo mkdir -p /opt/mxe-NatronPluginManager && sudo chmod 777 /opt/mxe-NatronPluginManager | |
- name: SDK | |
run: wget https://github.com/rodlie/NatronPluginManager/releases/download/continuous/mxe-NatronPluginManager-20211230.tar.xz && tar xvf mxe-NatronPluginManager-20211230.tar.xz -C /opt/mxe-NatronPluginManager/ | |
- name: Build | |
run: bash share/mingw.sh | |
- name: Artifact | |
run: sudo cp build/NatronPluginManager.zip /opt/ | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: NatronPluginManager-${{github.sha}}-Windows-x64 | |
path: /opt/NatronPluginManager.zip |