gitlab-ci-training icon indicating copy to clipboard operation
gitlab-ci-training copied to clipboard

Skoleni Gitlab CI (CI/CD)

Results 20 gitlab-ci-training issues
Sort by recently updated
recently updated
newest added

``` stages: - build - test - deploy build: stage: build script: echo Build except: variables: - $SKIP_STAGE_build == "1" && $SKIP_BRANCH == $CI_COMMIT_REF_NAME test: stage: test script: echo Test...

https://docs.gitlab.com/ee/ci/jobs/job_control.html#cicd-variable-expressions

https://docs.gitlab.com/ee/ci/yaml/index.html#release

```yaml # .gitlab-ci.yml stages: - build - test - deploy build: stage: build script: echo build && sleep 10 except: variables: - $SKIP_STAGE_build == "1" && $SKIP_BRANCH == $CI_COMMIT_REF_NAME test:...

helm upgrade --install gitlab-runner gitlab/gitlab-runner --set gitlabUrl=https://gitlab.sikademo.com/ --set runnerRegistrationToken=TV7jbPKGN53Z_7ruRXjQ --set rbac.create=true

``` curl --header "Content-Type: application/json" "https://gitlab.example.com/api/v4/ci/lint" --data '{"content": "{ \"image\": \"ruby:2.6\", \"services\": [\"postgres\"], \"before_script\": [\"bundle install\", \"bundle exec rake db:create\"], \"variables\": {\"DB_NAME\": \"postgres\"}, \"types\": [\"test\", \"deploy\", \"notify\"], \"rspec\": { \"script\":...

``` curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo ```