Skip to content

Commit

Permalink
build: enable gitlab-ci
Browse files Browse the repository at this point in the history
Closes #85

Signed-off-by: Levente Polyak <[email protected]>
  • Loading branch information
inglor authored and anthraxx committed Apr 28, 2022
1 parent 82cb675 commit 54acc58
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/test.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
image: "archlinux:latest"

stages:
- build
- test

build:
stage: build
needs: []
script:
- pacman -Syu --noconfirm m4 make openssh subversion rsync arch-install-scripts git bzr mercurial diffutils asciidoc
- make PREFIX=/usr
- make PREFIX=/usr DESTDIR=build install

check:
stage: test
needs: []
script:
- pacman -Syu --noconfirm m4 make openssh subversion rsync arch-install-scripts git bzr mercurial diffutils asciidoc shellcheck
- make check || true
- SHELLCHECK_OPTS="-S error" make check

0 comments on commit 54acc58

Please sign in to comment.