Skip to content

Commit

Permalink
Travis/Coverity has been dead for years, so switch to GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
TinoDidriksen committed Sep 11, 2024
1 parent 08d077b commit 5f3f029
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 80 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: libdivvun CI Build

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: dependencies
run: |
sudo apt-get -qy update
sudo apt-get -qfy install wget ca-certificates
wget -q https://apertium.projectjj.com/apt/install-nightly.sh -O - | sudo bash
sudo apt-get -qfy install --no-install-recommends autotools-dev gawk hfst-ospell-dev libarchive-dev libcg3-dev libhfst-dev libpugixml-dev libutfcpp-dev libxml2-utils pkg-config python3-dev python3-setuptools swig zip
- name: autoreconf
run: autoreconf -fvi
- name: configure
run: ./configure --enable-checker --enable-cgspell --enable-python-bindings
- name: build
run: make -j V=1 VERBOSE=1
- name: tests
run: make test V=1 VERBOSE=1
- name: make install
run: sudo make install
76 changes: 0 additions & 76 deletions .travis.yml

This file was deleted.

4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@
11. [Troubleshooting](#orge03c2e9)
12. [References / more documentation](#org7a81616)

[![img](https://www.travis-ci.com/divvun/libdivvun.svg?branch=master "Buoöd status")](https://app.travis-ci.com/github/divvun/libdivvun)

[![img](https://scan.coverity.com/projects/13737/badge.svg "Coverity static analysis")](https://scan.coverity.com/projects/divvun-divvun-gramcheck)


<a id="org4fcc88a"></a>

Expand Down

0 comments on commit 5f3f029

Please sign in to comment.