Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zathura-pdf-poppler
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwmt
zathura-pdf-poppler
Commits
c6c64a9e
Commit
c6c64a9e
authored
Jan 05, 2020
by
Moritz Lipp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CI Integration
parent
2f418b2b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
162 additions
and
2 deletions
+162
-2
.gitignore
.gitignore
+2
-0
.gitlab-ci.yml
.gitlab-ci.yml
+150
-0
meson.build
meson.build
+2
-2
subprojects/girara.wrap
subprojects/girara.wrap
+4
-0
subprojects/zathura.wrap
subprojects/zathura.wrap
+4
-0
No files found.
.gitignore
View file @
c6c64a9e
...
...
@@ -6,3 +6,5 @@
build
compile_commands.json
.ycm_extra_conf.*
subprojects/girara
subprojects/zathura
.gitlab-ci.yml
0 → 100644
View file @
c6c64a9e
stages
:
-
build
-
test
# Cache
cache
:
&dependency_cache
key
:
"
$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
paths
:
-
subprojects/girara
-
subprojects/zathura
# Archlinux
build:archlinux:
tags
:
-
pwmt
stage
:
build
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/archlinux:latest
script
:
-
mkdir -p build && cd build
-
meson ..
-
ninja
cache
:
<<
:
*dependency_cache
artifacts
:
expire_in
:
1 day
paths
:
-
build
except
:
-
tags
test:archlinux:
tags
:
-
pwmt
stage
:
test
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/archlinux:latest
script
:
-
cd build
-
ninja test
cache
:
<<
:
*dependency_cache
policy
:
pull
dependencies
:
-
build:archlinux
except
:
-
tags
# Debian 10 (Buster)
build:debian-buster:
tags
:
-
pwmt
stage
:
build
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/debian:buster
script
:
-
mkdir -p build && cd build
-
meson ..
-
ninja
cache
:
<<
:
*dependency_cache
artifacts
:
expire_in
:
1 day
paths
:
-
build
except
:
-
tags
test:debian-buster:
tags
:
-
pwmt
stage
:
test
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/debian:buster
script
:
-
cd build
-
ninja test
cache
:
<<
:
*dependency_cache
policy
:
pull
dependencies
:
-
build:debian-buster
except
:
-
tags
# Ubuntu 18.04 LTS (Bionic Beaver)
build:ubuntu-bionic:
tags
:
-
pwmt
stage
:
build
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/ubuntu:bionic
script
:
-
mkdir -p build && cd build
-
meson ..
-
ninja
cache
:
<<
:
*dependency_cache
artifacts
:
expire_in
:
1 day
paths
:
-
build
except
:
-
tags
test:ubuntu-bionic:
tags
:
-
pwmt
stage
:
test
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/ubuntu:bionic
script
:
-
cd build
-
ninja test
cache
:
<<
:
*dependency_cache
policy
:
pull
dependencies
:
-
build:ubuntu-bionic
except
:
-
tags
# Ubuntu 19.10 (Eoan Ermine)
build:ubuntu-eoan:
tags
:
-
pwmt
stage
:
build
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/ubuntu:eoan
script
:
-
mkdir -p build && cd build
-
meson ..
-
ninja
cache
:
<<
:
*dependency_cache
artifacts
:
expire_in
:
1 day
paths
:
-
build
except
:
-
tags
test:ubuntu-eoan:
tags
:
-
pwmt
stage
:
test
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/ubuntu:eoan
script
:
-
cd build
-
ninja test
cache
:
<<
:
*dependency_cache
policy
:
pull
dependencies
:
-
build:ubuntu-eoan
except
:
-
tags
meson.build
View file @
c6c64a9e
...
...
@@ -15,8 +15,8 @@ metainfodir = join_paths(datadir, 'metainfo')
desktopdir = join_paths(datadir, 'applications')
# required dependencies
zathura = dependency('zathura', version: '>=0.3.9')
girara = dependency('girara-gtk3')
zathura = dependency('zathura', version: '>=0.3.9'
, fallback: ['zathura', 'zathura_dependency']
)
girara = dependency('girara-gtk3'
, fallback: ['girara', 'girara_dependency']
)
glib = dependency('glib-2.0')
poppler = dependency('poppler-glib', version: '>=0.18')
...
...
subprojects/girara.wrap
0 → 100644
View file @
c6c64a9e
[wrap-git]
directory=girara
url=https://git.pwmt.org/pwmt/girara.git
revision=develop
subprojects/zathura.wrap
0 → 100644
View file @
c6c64a9e
[wrap-git]
directory=zathura
url=https://git.pwmt.org/pwmt/zathura.git
revision=develop
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment