Attention is currently required from: lynxis lazus.
osmith has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/37324?usp=email )
Change subject: publish-tarballs-for-tags.sh: publish osmo-epdg's versions ......................................................................
Patch Set 3: Code-Review-1
(1 comment)
Patchset:
PS3: As discussed in chat, this currently fails for strongswan-epdg while running the configure script: * "checking version from Git repository... configure: error: 5.9.3 is not a prefix of osmo-epdg-0.1.0, tag missing?" * "configure: error: GNU gperf required to generate e.g. ./src/libstrongswan/crypto/proposal/proposal_keywords_static.c" (could be installed by adjusting install-depends.sh)
It seemed like you would prefer to just get a simple git archive instead of running configure and "make dist-bzip2". To do that:
``` diff --git a/scripts/tarballs/prefer-configure.sh b/scripts/tarballs/prefer-configure.sh index 295b239..daafd14 100755 --- a/scripts/tarballs/prefer-configure.sh +++ b/scripts/tarballs/prefer-configure.sh @@ -10,6 +10,10 @@ if ! [ -e configure.ac ]; then fi
case "$PROJECT" in +strongswan-epdg) + # Use a simple git archive instead of running configure and "make dist-bzip2" + exit 1 + ;; gapk) case "$TAG" in v0.*|v1.0) ```