* Update Makefile to export binaries by default * Update Makefile to export binaries by default * Update Makefile to export binaries by default * Export binary with appropriate .exe extension * Update README.md
36 lines
797 B
YAML
36 lines
797 B
YAML
name: Ubuntu
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: update apt
|
|
run: sudo apt-get update
|
|
- name: install raylib dependencies
|
|
run: sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev
|
|
- name: make setup
|
|
run: make setup
|
|
|
|
- name: make bin/app
|
|
run: make bin/app
|
|
- name: 'export binary'
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: app
|
|
path: bin/app
|
|
- name: make clean
|
|
run: make clean
|
|
|
|
- name: make bin/app CXX=g++
|
|
run: make bin/app CXX=g++
|
|
- name: make clean
|
|
run: make clean
|