Skip to content

Commit

Permalink
Merge pull request #10 from t-paul/enable-github-action
Browse files Browse the repository at this point in the history
Enable github build action.
  • Loading branch information
t-paul committed Apr 22, 2024
2 parents 4045711 + 36d2c3f commit fa8ed6a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/linux-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: linux-build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: setup
run: |
sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
libsdl1.2-dev \
libgtk2.0-dev \
libz80ex-dev \
libxmu-dev \
netpbm
- uses: actions/checkout@v4
- name: bootstrap
run: ./config/bootstrap
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check

0 comments on commit fa8ed6a

Please sign in to comment.