Compare commits

..

No commits in common. 'cfe9e112aa410421c5584927f2b1f1973935b15a' and '2a78bf2abb0127518d59091da8a30027b61ef492' have entirely different histories.

@ -168,32 +168,19 @@ task:
GOX_TAGS: ""
task:
name: "Functional Tests $CI_DISTRO Go $GO_VERSION$MODULES_NAME"
alias: "Functional Tests"
matrix:
- compute_engine_instance:
image_project: debian-cloud
image: family/debian-11
platform: linux
cpu: 1
memory: 1G
env:
CI_DISTRO: debian
- compute_engine_instance:
image_project: cirrus-images
image: family/docker-builder
platform: linux
cpu: 1
memory: 1G
env:
CI_DISTRO: ubuntu
name: "Functional Tests Ubuntu Go $GO_VERSION$MODULES_NAME"
compute_engine_instance:
image_project: cirrus-images
image: family/docker-builder
platform: linux
cpu: 1
memory: 1G
bitcoind_cache:
folder: /tmp/bitcoind
populate_script: mkdir -p /tmp/bitcoind
install_script:
- apt-get update
# bind9-dnsutils contains dig
- apt-get install -y dnssec-trigger bind9-dnsutils
- apt-get install -y dnssec-trigger
# Namecoin Core
- BITCOIND_URL=$(curl https://www.namecoin.org/download/ | grep x86_64-linux-gnu.tar.gz | grep -v 0.13.99 | grep --only-matching https://.*.tar.gz)
- BITCOIND_FILENAME=$(echo $BITCOIND_URL | grep -E --only-matching 'namecoin-nc.*.tar.gz')
@ -313,7 +300,7 @@ task:
- ShellCheck
- Unit Tests
- Cross-Compile
- Functional Tests
- Functional Tests Ubuntu Go latest
bin_cache:
folder: "idist"
fingerprint_script:

@ -8,10 +8,6 @@ mkdir dist
pushd idist || exit 1
for x in *; do
echo "$x"
mkdir -p "$x/doc"
cp -a "../README.md" "$x/"
cp -a "../COPYING" "$x/"
cp -a "../_doc/"* "$x/doc/"
tar -caf "../dist/$(basename "$x").tar.gz" "$x"
done
popd || exit 1

Loading…
Cancel
Save