Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

dotnet publish with gitlab-ci for dummies

I am trying to setup ci with gitlab-ci. And I have a few questions about it.

  1. It looks like there is no rollback mechanism on gitlab-ci. So should i care about rolling back if deploy stage fails?
  2. I'am planning to use "dotnet publish Solution.sln -c release" script. But I have multiple projects in this solution. It has one classlib and 2 api. (like AdminApi and UserApi). And these 2 apis are hosted different sites in IIS. In this case, how can i configure dotnet publish script with params?
  3. Should i use something like xcopy for moving publish output to iis folder?
like image 717
isabasan Avatar asked Nov 15 '17 15:11

isabasan


1 Answers

I've put an app_offile.htm_for each web sites in iis with "We'll back soon message" in html.

And I've solved my problem with this gitlab-ci.yml

stages:
    - build
    - test
    - deploy
build:
    stage: build
    script:
        - echo "Building the app"
        - "dotnet publish MySolution.sln -c release"
    artifacts:
        untracked: true
    only:
        - dev
test:
    stage: test
    script: echo "Running tests"
    artifacts:
        untracked: true
    dependencies:
        - build
    only:
        - dev
deploy_staging:
    stage: deploy
    script:
        - echo "Deployintg to staging server Admin"
        - ren c:\\inetpub\\vhosts\\xxx\\admin\\app_offline.htm_ app_offline.htm
        - dotnet publish PathToAdmin.csproj -c release -o c:\\inetpub\\vhosts\\xxx\\admin
        - ren c:\\inetpub\\vhosts\\xxx\\admin\\app_offline.htm app_offline.htm_
        - echo "Deployintg to staging server User"
        - ren c:\\inetpub\\vhosts\\xxx\\user\\app_offline.htm_ app_offline.htm
        - dotnet publish PathToUser.csproj -c release -o c:\\inetpub\\vhosts\\xxx\\user
        - ren c:\\inetpub\\vhosts\\xxx\\user\\app_offline.htm app_offline.htm_
    dependencies:
        - build
    only:
        - dev
like image 88
isabasan Avatar answered Oct 15 '22 09:10

isabasan