From 6535ac9b99d1977d123743247f7c35bf910a24b6 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Sat, 4 Sep 2021 22:19:59 +0800 Subject: [PATCH] Fix CI and switch to GitHub CI (#68) --- .github/workflows/test.yml | 15 +++++++++++++++ .travis.yml | 28 ---------------------------- 2 files changed, 15 insertions(+), 28 deletions(-) create mode 100644 .github/workflows/test.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..300d8c0 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,15 @@ +on: push +jobs: + test: + runs-on: ubuntu-latest + container: archlinux/archlinux:latest + steps: + - name: Install dependencies + run: pacman -Syu --noconfirm m4 make openssh subversion rsync arch-install-scripts git bzr mercurial diffutils asciidoc shellcheck + - uses: actions/checkout@v2 + - name: Run tests + run: | + make PREFIX=/usr + make PREFIX=/usr DESTDIR="$(mktemp -d)" install + make check || true + SHELLCHECK_OPTS="-S error" make check diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 46d6cee..0000000 --- a/.travis.yml +++ /dev/null @@ -1,28 +0,0 @@ -language: shell -sudo: required - -services: -- docker - -archlinux: - packages: - - openssh - - subversion - - rsync - - arch-install-scripts - - git - - bzr - - mercurial - - diffutils - - asciidoc - - shellcheck - script: - - sudo pacman -Syu --noconfirm --needed "${CONFIG_PACKAGES[@]}" - - make PREFIX=/usr - - make PREFIX=/usr DESTDIR="$(mktemp -d)" install - - make check || true - - SHELLCHECK_OPTS="-S error" make check - -script: 'curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash' - -# vim: ft=yaml ts=2 sw=2 et: