diff options
author | Matthias Clasen <mclasen@redhat.com> | 2022-12-16 15:03:00 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2022-12-16 15:06:58 -0500 |
commit | 22b16f795c4946fa6eb5d134e2f65446a92c8bd8 (patch) | |
tree | 20a69abd61990734af78635e396dbf3def452f21 | |
parent | 4a14b5f8bc4f64684867f20a7c35e585bd7eef70 (diff) | |
download | gtk+-more-ci-fixes.tar.gz |
ci: export the right pathmore-ci-fixes
-rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c0af2316e1..9598be500b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -85,6 +85,7 @@ fedora-x86_64: EXTRA_MESON_FLAGS: "--buildtype=debug --default-library=both" script: - .gitlab-ci/show-info-linux.sh + - export PATH="/home/user/.local/bin:$PATH" - pip3 install --user meson~=0.64 - meson subprojects download - mkdir _install @@ -112,7 +113,7 @@ release-build: EXTRA_MESON_FLAGS: "--buildtype=release" script: - .gitlab-ci/show-info-linux.sh - - export PATH="$HOME/.local/bin:$PATH" + - export PATH="/home/user/.local/bin:$PATH" - pip3 install --user meson~=0.64 - meson subprojects download - meson setup ${COMMON_MESON_FLAGS} ${EXTRA_MESON_FLAGS} ${BACKEND_FLAGS} ${FEATURE_FLAGS} _build @@ -137,7 +138,7 @@ fedora-mingw64: # mingw64-graphene (rawhide) script: - .gitlab-ci/show-info-linux.sh - - export PATH="$HOME/.local/bin:$PATH" + - export PATH="/home/user/.local/bin:$PATH" - pip3 install --user meson~=0.64 - meson subprojects download - mkdir _build && cd _build @@ -153,7 +154,7 @@ installed-tests: G_TEST_ACCESSIBLE: 1 script: - .gitlab-ci/show-info-linux.sh - - export PATH="$HOME/.local/bin:$PATH" + - export PATH="/home/user/.local/bin:$PATH" - pip3 install --user meson~=0.64 - meson subprojects download - meson setup @@ -375,7 +376,7 @@ asan-build: needs: [] variables: script: - - export PATH="$HOME/.local/bin:$PATH" + - export PATH="/home/user/.local/bin:$PATH" - pip3 install --user meson~=0.64 - CC=clang meson setup --buildtype=debugoptimized -Db_sanitize=address -Db_lundef=false -Dintrospection=disabled _build - ninja -C _build @@ -392,7 +393,7 @@ reference: variables: EXTRA_MESON_FLAGS: "--buildtype=release --force-fallback-for=gdk-pixbuf,pango" script: - - export PATH="$HOME/.local/bin:$PATH" + - export PATH="/home/user/.local/bin:$PATH" - pip3 install --user meson~=0.64 - meson setup ${COMMON_MESON_FLAGS} ${EXTRA_MESON_FLAGS} -Dgtk_doc=true -Dgdk-pixbuf:gtk_doc=true -Dpango:gtk_doc=true _build - meson compile -C _build |