mirror of
https://github.com/libretro/libretro-chailove.git
synced 2024-11-27 02:01:00 +00:00
27 lines
449 B
YAML
27 lines
449 B
YAML
name: Build
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
fetch-depth: 0
|
|
|
|
#- name: Install
|
|
# run: |
|
|
# sudo apt-get update
|
|
# sudo apt-get install cmake time g++-7 gcc-7 binutils libc6 python
|
|
|
|
- name: Configure
|
|
run: ./configure
|
|
|
|
- name: Build
|
|
run: make
|
|
|
|
- name: Test
|
|
run: make test
|