Skip to content

Commit 8478ca4

Browse files
committed
try to migrate from Travis CI to GitHub Actions
1 parent 981752f commit 8478ca4

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

.github/workflows/ci-linux.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI (Linux)
2+
on: [push, pull_request]
3+
jobs:
4+
build-linux:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- name: Install dependencies
9+
run: |
10+
sudo apt-get update -qq
11+
sudo apt-get install -y libsdl1.2-dev libasound2-dev libpng-dev libz-dev
12+
- name: configure
13+
run: ./configure
14+
- name: make
15+
run: make

.travis.yml

-8
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PCSX-ReARMed - yet another PCSX fork
22
====================================
33

4-
[![Build Status](https://travis-ci.org/notaz/pcsx_rearmed.svg?branch=master)](https://travis-ci.org/notaz/pcsx_rearmed)
4+
![CI (Linux)](https://github.com/notaz/pcsx_rearmed/workflows/CI%20(Linux)/badge.svg)
55

66
*see [readme.txt](readme.txt) for more complete documentation*
77

0 commit comments

Comments
 (0)