From 3e8bba2fd1e71899adaa88fc1fbdeacd7b51815e Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Sat, 3 Apr 2021 14:09:49 -0400 Subject: Replace Travis CI with GitHub Actions configuration Replace the Travis CI configuration with an equivalent GitHub Actions workflow. Signed-off-by: Lukas Fleischer --- .github/workflows/make.yml | 49 ++++++++++++++++++++++++++++++++++++++++++++++ .travis.yml | 23 ---------------------- 2 files changed, 49 insertions(+), 23 deletions(-) create mode 100644 .github/workflows/make.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml new file mode 100644 index 0000000..cbbe996 --- /dev/null +++ b/.github/workflows/make.yml @@ -0,0 +1,49 @@ +name: Build and test + +on: + push: + branches: [master, pu] + paths-ignore: + - 'contrib/**' + - 'doc/**' + - 'po/**' + pull_request: + branches: [master, pu] + paths-ignore: + - 'contrib/**' + - 'doc/**' + - 'po/**' + +jobs: + build: + strategy: + matrix: + os: ['ubuntu-latest', 'macos-latest'] + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v2 + - name: Install dependencies (Ubuntu) + run: sudo apt-get install asciidoc autopoint gettext xmlto + if: matrix.os == 'ubuntu-latest' + - name: Install dependencies (MacOS) + run: | + brew update + brew install automake + brew install asciidoc + brew install gettext + brew install xmlto + brew link --force gettext + sudo mkdir /etc/xml + sudo ln -s /usr/local/etc/xml/catalog /etc/xml/catalog + if: matrix.os == 'macos-latest' + - name: autogen.sh + run: ./autogen.sh + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 47d27fe..0000000 --- a/.travis.yml +++ /dev/null @@ -1,23 +0,0 @@ -language: c - -os: - - linux - - osx - -addons: - apt: - packages: - - asciidoc - - autopoint - - xmlto - -before_install: - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install asciidoc; fi - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install gettext; fi - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install xmlto; fi - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew link --force gettext; fi - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo mkdir /etc/xml; fi - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo ln -s /usr/local/etc/xml/catalog /etc/xml/catalog; fi - -script: ./autogen.sh && ./configure && make && make check -- cgit v1.2.3