Skip to content

Commit

Permalink
CI: init
Browse files Browse the repository at this point in the history
  • Loading branch information
rilian-la-te committed Aug 21, 2018
1 parent 5c93044 commit 93980dd
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
stages:
- build

before_script:
- mkdir -p _ccache
- export CCACHE_BASEDIR=${PWD}
- export CCACHE_DIR=${PWD}/_ccache

cache:
paths:
- _ccache/

build-main:
image: alpine/edge
stage: build
script:
- apk add --update cmake make musl-dev gcc gettext-dev libintl
- mkdir build && cd build && cmake .. -DCMAKE_INSTALL_PREFIX=/usr
- make
- make install
- locale -a
# artifacts:
# paths:
# - "build/vala-panel*.tar.xz"
# expire_in: 1 week

0 comments on commit 93980dd

Please sign in to comment.