From 06d0a9afb6e8a31b7f0a34e02f28ee38ec2e768b Mon Sep 17 00:00:00 2001 From: "n.nakhostin" Date: Sun, 31 Aug 2025 18:07:22 +0330 Subject: [PATCH] Update CI Configuration in .drone.yml to Reflect Build Process Changes - Renamed the pipeline from 'web' to 'build' for clarity in the CI process. - Updated the 'web tag' step to 'build tag' to better represent its purpose. - Removed the 'scraper tag' step to streamline the configuration and focus on the build process. - Ensured the CI configuration aligns with the current build requirements for the application. --- .drone.yml | 67 ++++-------------------------------------------------- 1 file changed, 4 insertions(+), 63 deletions(-) diff --git a/.drone.yml b/.drone.yml index 4704dae..5f35800 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,12 +1,12 @@ ################################################################################ -# web +# build ################################################################################ kind: pipeline type: docker -name: (web dev) build form and push to artifactory +name: (build dev) build form and push to artifactory steps: - - name: web tag + - name: build tag image: alpine/git:2.40.1 environment: GOOS: linux @@ -30,19 +30,6 @@ steps: repo: artifactory.ravanertebat.ir/tm/web registry: artifactory.ravanertebat.ir - - name: scraper tag - image: alpine/git:2.40.1 - environment: - GOOS: linux - GOARCH: amd64 - CGO_ENABLED: 0 - settings: - debug: true - commands: - - APP_VERSION=$(git rev-list HEAD --count --no-merges)-$DRONE_BRANCH - - echo "APP Version tags $APP_VERSION" - - echo -n "$APP_VERSION" >> .tags - - name: build scraper image: plugins/docker settings: @@ -61,50 +48,4 @@ trigger: branch: - develop event: - - custom - - - -# kind: pipeline -# type: docker -# name: go-pipeline - -# steps: -# - name: install-deps -# image: golang:1.21 -# volumes: -# - name: gocache -# path: /go/pkg/mod -# - name: gobuild -# path: /root/.cache/go-build -# commands: -# - go mod download - -# - name: build-web -# image: golang:1.21 -# volumes: -# - name: gocache -# path: /go/pkg/mod -# - name: gobuild -# path: /root/.cache/go-build -# commands: -# - go build -o build/web ./cmd/web - -# - name: build-scraper -# image: golang:1.21 -# volumes: -# - name: gocache -# path: /go/pkg/mod -# - name: gobuild -# path: /root/.cache/go-build -# commands: -# - go build -o build/scraper ./cmd/scraper - -# volumes: -# - name: gocache -# host: -# path: /opt/drone/cache/go -# - name: gobuild -# host: -# path: /opt/drone/cache/go-build - + - custom \ No newline at end of file