From: notaz Date: Fri, 29 Oct 2021 20:57:05 +0000 (+0300) Subject: try to migrate from Travis CI to GitHub Actions X-Git-Tag: r23~106 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=commitdiff_plain;h=8478ca412d4a76e311977d5c220810c498f3938b try to migrate from Travis CI to GitHub Actions --- diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml new file mode 100644 index 00000000..511aa566 --- /dev/null +++ b/.github/workflows/ci-linux.yml @@ -0,0 +1,15 @@ +name: CI (Linux) +on: [push, pull_request] +jobs: + build-linux: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install dependencies + run: | + sudo apt-get update -qq + sudo apt-get install -y libsdl1.2-dev libasound2-dev libpng-dev libz-dev + - name: configure + run: ./configure + - name: make + run: make diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 7c4eafbd..00000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: cpp -compiler: - - gcc - - clang -before_install: - - sudo apt-get update -qq - - sudo apt-get install -y libsdl1.2-dev libasound2-dev libpng-dev libz-dev -script: ./configure && make diff --git a/README.md b/README.md index 99644108..be7093c3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ PCSX-ReARMed - yet another PCSX fork ==================================== -[![Build Status](https://travis-ci.org/notaz/pcsx_rearmed.svg?branch=master)](https://travis-ci.org/notaz/pcsx_rearmed) +![CI (Linux)](https://github.com/notaz/pcsx_rearmed/workflows/CI%20(Linux)/badge.svg) *see [readme.txt](readme.txt) for more complete documentation*