Commit 989d13f8 authored by Thomas Boni's avatar Thomas Boni
Browse files

Merge branch '148-last-task-to-do-in-the-mvp-v0-1-0' into 'latest'

Resolve "Last task to do in the %"MVP v0.1.0""

Closes #148

See merge request r2devops/hub!81
parents e3cf76c1 814bdeea
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
site/
docs/jobs/**/*
!docs/jobs/**/.pages
**/.DS_Store
+4 −4
Original line number Diff line number Diff line
@@ -5,16 +5,16 @@ stages:

include:
  - remote: 'https://jobs.r2devops.io/mkdocs.yml'
#  - remote: 'https://jobs.r2devops.io/pages.yml'
  - remote: 'https://jobs.r2devops.io/pages.yml'

mkdocs:
  before_script:
    - pip3 install -r requirements.txt
    - python3 builder/builder.py

#pages:
#  rules:
#    - if: '$CI_COMMIT_BRANCH == "latest"'
pages:
  rules:
    - if: '$CI_COMMIT_BRANCH == "latest"'

ci_linter:
  image: golang:1.15.2-alpine3.12
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ The **R2Devops hub** is a collaborative hub of CI & CD
projects.

!!! info
    Currently, the hub is focused to provides only **Gitlab 🦊** jobs. We plan
    Currently, the hub is focused to provide only **Gitlab 🦊** jobs. We plan
    to support more CI/CD platforms in the future.

Each jobs of the hub can be used independently to create fully **customized pipelines.**
+2 −2
Original line number Diff line number Diff line
@@ -41,10 +41,10 @@ Follows these steps to setup your CI/CD pipeline in less than 5 minutes !

        By default, the `latest` version of a job is used. You can choose to
        use a specific version using a `tag`. Available tags are described for
        each jobs in [Jobs section](/jobs/). Description of `tag` format is
        each job in [Jobs section](/jobs/). Description of `tag` format is
        available in [Versioning page](/versioning/).

        Once your pipeline is functional, we recommend to use specific version
        Once your pipeline is functional, we recommend to use a specific version
        for jobs in order to ensure that your pipeline will not be broken by a
        job update.

+2 −2
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ You can also use the latest version using `latest` instead of a tag. Using
this, you will retrieve the latest version of jobs at each run. Note that if
you don't set any tag, `latest` is used by default.

Each jobs can be used independently with different version.
Each jobs can be used independently with a different version.

Example in `.gitlab-ci.yml`:

@@ -20,5 +20,5 @@ include:
  - remote: 'https://jobs.r2devops.io/0.1.0/apidoc.yml'
```

Available tags and release note for each jobs are available in [Jobs
Available tags and release note for each job are available in [Jobs
section](/jobs/).
Loading