Activate linux workflow #197
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: Linux x64 | |
on: | |
push: | |
branches: [ DIRT ] | |
pull_request: | |
branches: [ DIRT ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: update Apt | |
run: sudo apt-get update | |
- name: install-dependencies | |
run: sudo apt-get install libsdl2-dev libfuse2 arm-none-eabi-gcc | |
- name: make | |
run: ./plugins/build.sh | |
- name: package | |
run: ./package | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: dotto-development-linux-x86_64 | |
path: Dotto-x86_64.AppImage |