Mention 3rd party binaries for licensing #29
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
# GitHub actions workflow. | |
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | |
name: Build CI | |
on: | |
push: | |
branches: [master, fix-*, feat-*] | |
tags: [v*] | |
pull_request: | |
types: [opened] | |
branches: [master] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
cc: [gcc] | |
runs-on: ${{ matrix.os }} | |
env: | |
CC: ${{ matrix.cc }} | |
steps: | |
- run: sudo apt-get update -y | |
- run: sudo apt-get install -y libgtkmm-3.0-dev libcurl4-gnutls-dev libyajl-dev valgrind | |
- uses: actions/checkout@v3 | |
- run: make | |
- run: sudo make install | |
- run: make clean | |
- run: which samrewritten | |
- run: cd package && ./build_appimage.sh | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: SamRewritten | |
path: package/Sam*.AppImage |