mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
ci: Always allow redirect when using curl
This done by specifying -L parameter. Some of the FDO infrastructure is using redirect.
This commit is contained in:
parent
815976e4aa
commit
95f9b25683
1 changed files with 5 additions and 5 deletions
|
@ -89,7 +89,7 @@ gst indent:
|
||||||
script:
|
script:
|
||||||
# man indent. grep RETURN VALUE, grab a beer on my behalf...
|
# man indent. grep RETURN VALUE, grab a beer on my behalf...
|
||||||
- indent --version || true
|
- indent --version || true
|
||||||
- curl -o gst-indent https://gitlab.freedesktop.org/gstreamer/gstreamer/raw/${GST_UPSTREAM_BRANCH}/tools/gst-indent
|
- curl -L -o gst-indent https://gitlab.freedesktop.org/gstreamer/gstreamer/raw/${GST_UPSTREAM_BRANCH}/tools/gst-indent
|
||||||
- chmod +x gst-indent
|
- chmod +x gst-indent
|
||||||
- find . -name '*.c' -exec ./gst-indent {} +
|
- find . -name '*.c' -exec ./gst-indent {} +
|
||||||
- |
|
- |
|
||||||
|
@ -125,7 +125,7 @@ gst indent:
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- ccache --show-stats
|
- ccache --show-stats
|
||||||
- curl -o clone_manifest_ref.py https://gitlab.freedesktop.org/gstreamer/gst-ci/raw/${GST_UPSTREAM_BRANCH}/gitlab/clone_manifest_ref.py
|
- curl -L -o clone_manifest_ref.py https://gitlab.freedesktop.org/gstreamer/gst-ci/raw/${GST_UPSTREAM_BRANCH}/gitlab/clone_manifest_ref.py
|
||||||
- chmod +x clone_manifest_ref.py
|
- chmod +x clone_manifest_ref.py
|
||||||
- ./clone_manifest_ref.py --manifest manifest.xml --project gst-build --destination gst-build
|
- ./clone_manifest_ref.py --manifest manifest.xml --project gst-build --destination gst-build
|
||||||
- cd gst-build/
|
- cd gst-build/
|
||||||
|
@ -283,7 +283,7 @@ integration testsuites fedora:
|
||||||
# instead copy it from the cache and do a git fetch
|
# instead copy it from the cache and do a git fetch
|
||||||
# We remove this copy first since it had its mediafiles stripped
|
# We remove this copy first since it had its mediafiles stripped
|
||||||
- cp -r /gst-build/subprojects/gst-integration-testsuites/ "${CI_PROJECT_DIR}/gst-build/subprojects/gst-integration-testsuites/"
|
- cp -r /gst-build/subprojects/gst-integration-testsuites/ "${CI_PROJECT_DIR}/gst-build/subprojects/gst-integration-testsuites/"
|
||||||
- curl -o clone_manifest_ref.py "https://gitlab.freedesktop.org/gstreamer/gst-ci/raw/${GST_UPSTREAM_BRANCH}/gitlab/clone_manifest_ref.py"
|
- curl -L -o clone_manifest_ref.py "https://gitlab.freedesktop.org/gstreamer/gst-ci/raw/${GST_UPSTREAM_BRANCH}/gitlab/clone_manifest_ref.py"
|
||||||
- >-
|
- >-
|
||||||
python3 clone_manifest_ref.py
|
python3 clone_manifest_ref.py
|
||||||
--fetch
|
--fetch
|
||||||
|
@ -729,7 +729,7 @@ build cerbero cross win64:
|
||||||
GSTREAMER_ROOT_ANDROID: ${CI_PROJECT_DIR}/examples/cerbero-android-universal
|
GSTREAMER_ROOT_ANDROID: ${CI_PROJECT_DIR}/examples/cerbero-android-universal
|
||||||
script:
|
script:
|
||||||
- mkdir -p ${EXAMPLES_HOME}/outputs
|
- mkdir -p ${EXAMPLES_HOME}/outputs
|
||||||
- curl -o clone_manifest_ref.py https://gitlab.freedesktop.org/gstreamer/gst-ci/raw/${GST_UPSTREAM_BRANCH}/gitlab/clone_manifest_ref.py
|
- curl -L -o clone_manifest_ref.py https://gitlab.freedesktop.org/gstreamer/gst-ci/raw/${GST_UPSTREAM_BRANCH}/gitlab/clone_manifest_ref.py
|
||||||
- chmod +x clone_manifest_ref.py
|
- chmod +x clone_manifest_ref.py
|
||||||
- ./clone_manifest_ref.py --manifest manifest.xml --project gst-examples --destination ${EXAMPLES_HOME}/gst-examples
|
- ./clone_manifest_ref.py --manifest manifest.xml --project gst-examples --destination ${EXAMPLES_HOME}/gst-examples
|
||||||
- ./clone_manifest_ref.py --manifest manifest.xml --project gst-docs --destination ${EXAMPLES_HOME}/gst-docs
|
- ./clone_manifest_ref.py --manifest manifest.xml --project gst-docs --destination ${EXAMPLES_HOME}/gst-docs
|
||||||
|
@ -906,7 +906,7 @@ documentation:
|
||||||
# install the binaries
|
# install the binaries
|
||||||
- installer -pkg gstreamer-1.0-devel-*-ios-universal.pkg -target CurrentUserHomeDirectory -verbose
|
- installer -pkg gstreamer-1.0-devel-*-ios-universal.pkg -target CurrentUserHomeDirectory -verbose
|
||||||
|
|
||||||
- curl -o clone_manifest_ref.py https://gitlab.freedesktop.org/gstreamer/gst-ci/raw/${GST_UPSTREAM_BRANCH}/gitlab/clone_manifest_ref.py
|
- curl -L -o clone_manifest_ref.py https://gitlab.freedesktop.org/gstreamer/gst-ci/raw/${GST_UPSTREAM_BRANCH}/gitlab/clone_manifest_ref.py
|
||||||
- chmod +x clone_manifest_ref.py
|
- chmod +x clone_manifest_ref.py
|
||||||
- ./clone_manifest_ref.py --manifest manifest.xml --project gst-examples --destination ${EXAMPLES_HOME}/gst-examples
|
- ./clone_manifest_ref.py --manifest manifest.xml --project gst-examples --destination ${EXAMPLES_HOME}/gst-examples
|
||||||
- ./clone_manifest_ref.py --manifest manifest.xml --project gst-docs --destination ${EXAMPLES_HOME}/gst-docs
|
- ./clone_manifest_ref.py --manifest manifest.xml --project gst-docs --destination ${EXAMPLES_HOME}/gst-docs
|
||||||
|
|
Loading…
Reference in a new issue