From fb5047385913ceddf55657189abd8085ef1a6b56 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sun, 15 Mar 2020 07:38:22 +0100 Subject: [PATCH] add a CI configuration allowing to build a release --- .gitlab-ci.yml | 22 ++++++++++ dastworx/build.sh | 2 +- setup/build-release.sh | 97 ++++++++++++++++++++++++++++++++++++++++++ setup/deb.sh | 2 +- setup/rpm.sh | 4 +- 5 files changed, 123 insertions(+), 4 deletions(-) create mode 100644 setup/build-release.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 75b4bb86..c6fc86ad 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,3 +11,25 @@ pages: only: - master - merge_requests + +release: + image: dlang2/ldc-ubuntu + variables: + GIT_SUBMODULE_STRATEGY: normal + before_script: + - apt-get update -y + - apt-get install -y dpkg + - apt-get install -y rpm + - apt-get install -y git + - apt-get install -y zip + - curl ftp://freepascal.dfmk.hu/pub/lazarus/releases/Lazarus%20Linux%20amd64%20DEB/Lazarus%202.0.6/fpc-laz_3.0.4-1_amd64.deb -O && apt install -y ./fpc-laz_3.0.4-1_amd64.deb + - curl ftp://freepascal.dfmk.hu/pub/lazarus/releases/Lazarus%20Linux%20amd64%20DEB/Lazarus%202.0.6/fpc-src_3.0.4-2_amd64.deb -O && apt install -y ./fpc-src_3.0.4-2_amd64.deb + - curl ftp://freepascal.dfmk.hu/pub/lazarus/releases/Lazarus%20Linux%20amd64%20DEB/Lazarus%202.0.6/lazarus-project_2.0.6-0_amd64.deb -O && apt install -y ./lazarus-project_2.0.6-0_amd64.deb + script: + - bash setup/build-release.sh + artifacts: + paths: + - setup/output/ + only: + - tags + - merge_requests diff --git a/dastworx/build.sh b/dastworx/build.sh index 67a6863a..f6279929 100755 --- a/dastworx/build.sh +++ b/dastworx/build.sh @@ -24,7 +24,7 @@ cd src/ dast=$(find `pwd` -type f -name \*.d) cd ../ -echo building using $DC... +echo building dastworx using $DC... #build $DC ${dast[@]} ${dparse[@]} ${iz[@]} ${stdxalloc[@]} \ diff --git a/setup/build-release.sh b/setup/build-release.sh new file mode 100644 index 00000000..9b10d8a3 --- /dev/null +++ b/setup/build-release.sh @@ -0,0 +1,97 @@ +set -e + +# env +export DC=ldc2 +semver=$(cat setup/version.txt) +ver=${semver:1:100} +echo "building dexed release" $ver + +# dastworx +cd dastworx +bash build.sh +cd .. + +# dexed +echo "building dexed..." +cd lazproj +lazbuild -B dexeddesigncontrols.lpk +lazbuild -B dexed.lpi +echo "...done" +cd .. + +# dcd +echo "building dcd..." +git clone https://github.com/dlang-community/dcd.git +cd dcd +git submodule update --init --recursive +git fetch --tags +make ldc +echo "...done" +cd .. + +# dscanner +echo "building dscanner..." +git clone https://github.com/dlang-community/d-scanner.git +cd d-scanner +git submodule update --init --recursive +git fetch --tags +make ldc +echo "...done" +cd .. + +# move to setup dir +echo "moving files and binaries..." +mkdir setup/nux64 +mv bin/dastworx setup/nux64/ +mv bin/dexed setup/nux64/ +mv dcd/bin/dcd-server setup/nux64/ +mv dcd/bin/dcd-client setup/nux64/ +mv d-scanner/bin/dscanner setup/nux64/ +cp logo/dexed.ico setup/nux64/dexed.ico +cp logo/dexed256.png setup/nux64/dexed.png +cp LICENSE_1_0.txt setup/nux64/dexed.license.txt +cp dcd/License.txt setup/nux64/dcd.license.txt +echo "...done" + +# deb, rpm, custom console installer +cd setup +echo "building the RPM..." +bash rpm.sh +echo "...done" +echo "building the DEV..." +bash deb.sh +echo "...done" +SETUP_APP_NAME="dexed.$ver.linux64.setup" +echo "building the custom setup program..." +ldmd2 setup.d -O -release -Jnux64 -J./ -of"output/"$SETUP_APP_NAME +bash zip-nux64.sh +bash setupzip-nux-noarch.sh $SETUP_APP_NAME +echo "...done" + +# the job executing this script is only triggered when +# - a tag is pushed +# - a merge request, since one might modify this script. +# so push a new release only in the first case. +if [ ! -z "$GITLAB_CI" ]; then + + # build links to the artifacts + # reminder: need to set the expiration date or click KEEP btn on the website UI + LNK_RPM=https://gitlab.com/basile.b/dexed/-/jobs/$CI_JOB_ID/artifacts/raw/setup/output/dexed-3.8.0-0.x86_64.rpm + LNK_DEB=https://gitlab.com/basile.b/dexed/-/jobs/$CI_JOB_ID/artifacts/raw/setup/output/dexed-3.8.0.amd64.deb + LNK_ZP1=https://gitlab.com/basile.b/dexed/-/jobs/$CI_JOB_ID/artifacts/raw/setup/output/dexed.3.8.0.linux64.setup.zip + LNK_ZP2=https://gitlab.com/basile.b/dexed/-/jobs/$CI_JOB_ID/artifacts/raw/setup/output/dexed.3.8.0.linux64.zip + + echo "asset1: " $LNK_RPM + echo "asset2: " $LNK_DEB + echo "asset3: " $LNK_ZP1 + echo "asset4: " $LNK_ZP2 + + # create Gitlab release + if [ ! -z "$CI_MERGE_REQUEST_ID" ]; then + + curl --header 'Content-Type: application/json' \ --header "PRIVATE-TOKEN:" $CI_JOB_TOKEN \ + --data '{ "name": "Dexed '$ver'", "tag_name": '$semver', "description": "changelog coming soon...",' \ + '"assets": { "links": [{"url": "'$LNK_RPM'" }, {"url": "'$LNK_DEB'" }, {"url": "'$LNK_ZP1'" }, {"url": "'$LNK_ZP2'" }] } }' \ + --request POST https://gitlab.com/api/v4/projects/15908229/releases + fi +fi diff --git a/setup/deb.sh b/setup/deb.sh index 66cd4fbf..e1ee1322 100644 --- a/setup/deb.sh +++ b/setup/deb.sh @@ -53,4 +53,4 @@ Description: IDE for the D programming language" > control cd $HOME dpkg-deb --build $name rm $HOME/$name -r -f -mv $HOME/$name.deb $cp_trgt/$name.deb +mv $name.deb $cp_trgt/$name.deb diff --git a/setup/rpm.sh b/setup/rpm.sh index 882f9c80..c027585b 100644 --- a/setup/rpm.sh +++ b/setup/rpm.sh @@ -81,5 +81,5 @@ Dexed is an IDE for the DMD D compiler. - see https://github.com/Basile-z/dexed/releases/tag/$ver ">$specname -rpmbuild -ba $specname -mv $HOME/rpmbuild/RPMS/$arch/$name_and_ver.rpm $cp_trgt/$name_and_ver.rpm +rpmbuild -ba $specname --define "_rpmdir /$cp_trgt" +mv $cp_trgt/$arch/$name_and_ver.rpm $cp_trgt/$name_and_ver.rpm