2018-06-01 10:42:48 +00:00
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
variables:
|
2021-07-02 12:00:06 +00:00
|
|
|
DEPENDENCIES: dbus-x11 diffutils gcc gjs meson ninja-build python3-dbus python3-gobject redhat-rpm-config tpm2-tss-devel
|
2021-03-10 15:40:40 +00:00
|
|
|
CPPCHECK_OPTIONS: "--enable=warning --enable=style --enable=performance --enable=portability --std=c99 --template='{id}:{file}:{line},{severity},{message}'"
|
2018-06-01 10:42:48 +00:00
|
|
|
|
|
|
|
fedora:Werror:
|
2019-06-05 09:39:30 +00:00
|
|
|
image: fedora:latest
|
2018-06-01 10:42:48 +00:00
|
|
|
stage: build
|
|
|
|
before_script:
|
2018-07-24 14:14:03 +00:00
|
|
|
- dnf upgrade -y
|
2018-06-01 10:42:48 +00:00
|
|
|
- dnf install -y 'dnf-command(builddep)'
|
|
|
|
- dnf builddep -y libsecret
|
2021-07-07 09:45:21 +00:00
|
|
|
- dnf install -y $DEPENDENCIES swtpm swtpm-tools tpm2-abrmd
|
2018-06-01 10:42:48 +00:00
|
|
|
- dbus-uuidgen --ensure
|
|
|
|
script:
|
2021-07-07 09:45:21 +00:00
|
|
|
- export XDG_CONFIG_HOME=$HOME/.config
|
|
|
|
- /usr/share/swtpm/swtpm-create-user-config-files --root
|
|
|
|
- mkdir -p ${XDG_CONFIG_HOME}/mytpm1
|
|
|
|
- swtpm_setup --tpm2 --tpmstate $XDG_CONFIG_HOME/mytpm1 --createek --allow-signing --decryption --create-ek-cert --create-platform-cert --lock-nvram --overwrite --display
|
|
|
|
- swtpm socket --tpm2 --tpmstate dir=$XDG_CONFIG_HOME/mytpm1 --flags startup-clear --ctrl type=tcp,port=2322 --server type=tcp,port=2321 --daemon
|
2018-06-01 10:42:48 +00:00
|
|
|
- eval `dbus-launch --sh-syntax`
|
2021-07-08 09:45:53 +00:00
|
|
|
- 'tpm2-abrmd --logger=stdout --tcti=swtpm: --session --allow-root --flush-all &'
|
2021-07-07 09:45:21 +00:00
|
|
|
- 'export TCTI=tabrmd:bus_type=session'
|
2021-07-02 12:00:06 +00:00
|
|
|
- meson _build -Dwerror=true -Dc_args=-Wno-error=deprecated-declarations -Dtpm2=true
|
2021-08-04 08:39:38 +00:00
|
|
|
- meson compile -C _build
|
2019-06-05 09:46:15 +00:00
|
|
|
- meson test -C _build
|
2020-03-10 12:53:44 +00:00
|
|
|
artifacts:
|
|
|
|
when: on_failure
|
|
|
|
paths:
|
|
|
|
- _build/meson-logs/testlog.txt
|
2018-06-01 10:42:48 +00:00
|
|
|
|
|
|
|
fedora:asan:
|
2019-06-05 09:39:30 +00:00
|
|
|
image: fedora:latest
|
2018-06-01 10:42:48 +00:00
|
|
|
stage: build
|
|
|
|
before_script:
|
2018-07-24 14:14:03 +00:00
|
|
|
- dnf upgrade -y
|
2018-06-01 10:42:48 +00:00
|
|
|
- dnf install -y 'dnf-command(builddep)'
|
|
|
|
- dnf builddep -y libsecret
|
|
|
|
- dnf install -y $DEPENDENCIES libasan
|
|
|
|
- dbus-uuidgen --ensure
|
|
|
|
script:
|
2019-06-05 09:46:15 +00:00
|
|
|
- meson _build -Dsanitize=address
|
2021-08-04 08:39:38 +00:00
|
|
|
- meson compile -C _build
|
2018-06-01 10:42:48 +00:00
|
|
|
- eval `dbus-launch --sh-syntax`
|
2019-06-05 09:46:15 +00:00
|
|
|
- meson test -C _build
|
2020-03-10 12:53:44 +00:00
|
|
|
artifacts:
|
|
|
|
when: on_failure
|
|
|
|
paths:
|
|
|
|
- _build/meson-logs/testlog.txt
|
2018-06-01 10:42:48 +00:00
|
|
|
|
|
|
|
fedora:ubsan:
|
2019-06-05 09:39:30 +00:00
|
|
|
image: fedora:latest
|
2018-06-01 10:42:48 +00:00
|
|
|
stage: build
|
|
|
|
before_script:
|
2018-07-24 14:14:03 +00:00
|
|
|
- dnf upgrade -y
|
2018-06-01 10:42:48 +00:00
|
|
|
- dnf install -y 'dnf-command(builddep)'
|
|
|
|
- dnf builddep -y libsecret
|
|
|
|
- dnf install -y $DEPENDENCIES libubsan
|
|
|
|
- dbus-uuidgen --ensure
|
|
|
|
script:
|
2019-06-05 09:46:15 +00:00
|
|
|
- meson _build -Dsanitize=undefined
|
2021-08-04 08:39:38 +00:00
|
|
|
- meson compile -C _build
|
2018-06-01 10:42:48 +00:00
|
|
|
- eval `dbus-launch --sh-syntax`
|
2019-06-05 09:46:15 +00:00
|
|
|
- meson test -C _build
|
2020-03-10 12:53:44 +00:00
|
|
|
artifacts:
|
|
|
|
when: on_failure
|
|
|
|
paths:
|
|
|
|
- _build/meson-logs/testlog.txt
|
2018-06-01 10:42:48 +00:00
|
|
|
|
2021-03-10 15:40:40 +00:00
|
|
|
fedora-static-analyzers/test:
|
|
|
|
image: fedora:latest
|
|
|
|
stage: build
|
|
|
|
before_script:
|
|
|
|
- dnf upgrade -y
|
|
|
|
- dnf install -y 'dnf-command(builddep)'
|
|
|
|
- dnf builddep -y libsecret
|
|
|
|
- dnf install -y $DEPENDENCIES clang-analyzer cppcheck
|
|
|
|
- dbus-uuidgen --ensure
|
|
|
|
script:
|
|
|
|
- meson _build
|
|
|
|
- meson compile -C _build --ninja-args scan-build
|
|
|
|
- cppcheck --force -q $CPPCHECK_OPTIONS libsecret/ egg/ tool/
|
|
|
|
artifacts:
|
|
|
|
when: on_failure
|
|
|
|
paths:
|
|
|
|
- _build/meson-logs/testlog.txt
|
|
|
|
|
2018-06-01 10:42:48 +00:00
|
|
|
fedora:coverage:
|
2019-06-05 09:39:30 +00:00
|
|
|
image: fedora:latest
|
2018-06-01 10:42:48 +00:00
|
|
|
stage: build
|
|
|
|
before_script:
|
2018-07-24 14:14:03 +00:00
|
|
|
- dnf upgrade -y
|
2018-06-01 10:42:48 +00:00
|
|
|
- dnf install -y 'dnf-command(builddep)'
|
|
|
|
- dnf builddep -y libsecret
|
|
|
|
- dnf install -y $DEPENDENCIES lcov
|
|
|
|
- dbus-uuidgen --ensure
|
|
|
|
script:
|
2019-06-05 09:46:15 +00:00
|
|
|
- meson _build -Db_coverage=true
|
2021-08-04 08:39:38 +00:00
|
|
|
- meson compile -C _build
|
2018-06-01 10:42:48 +00:00
|
|
|
- eval `dbus-launch --sh-syntax`
|
2019-06-05 09:46:15 +00:00
|
|
|
- meson test -C _build
|
|
|
|
- ninja coverage-html -C _build
|
2018-06-01 10:42:48 +00:00
|
|
|
coverage: '/^\s+lines.+:\s+([\d.]+\%)\s+/'
|
|
|
|
artifacts:
|
|
|
|
name: "libsecret-${CI_JOB_NAME}-${CI_COMMIT_REF_NAME}"
|
2020-03-10 12:53:44 +00:00
|
|
|
when: on_success
|
2018-06-01 10:42:48 +00:00
|
|
|
paths:
|
2019-06-05 09:46:15 +00:00
|
|
|
- _build/meson-logs/coveragereport/
|
2019-06-09 06:27:03 +00:00
|
|
|
# https://github.com/linux-test-project/lcov/issues/58
|
|
|
|
allow_failure: true
|
2018-06-01 10:42:48 +00:00
|
|
|
|
|
|
|
pages:
|
|
|
|
stage: deploy
|
|
|
|
script:
|
2021-08-12 17:15:30 +00:00
|
|
|
- mkdir public
|
|
|
|
- mv _build/meson-logs/coveragereport public/coverage
|
2018-06-01 10:42:48 +00:00
|
|
|
artifacts:
|
2019-06-09 07:31:03 +00:00
|
|
|
when: on_success
|
2018-06-01 10:42:48 +00:00
|
|
|
paths:
|
|
|
|
- public
|
2019-06-09 07:31:03 +00:00
|
|
|
# https://github.com/linux-test-project/lcov/issues/58
|
|
|
|
allow_failure: true
|