Merge pull request #1751 from gerhard/extract-docs-snippets-in-separate-files
Extract snippets from docs into separate files
This commit is contained in:
commit
41aaf79bc6
@ -15,33 +15,7 @@ This plan is the entrypoint for everything that runs within a pipeline. The simp
|
|||||||
|
|
||||||
This is our **Getting Started** example app plan structure:
|
This is our **Getting Started** example app plan structure:
|
||||||
|
|
||||||
```cue
|
```cue file=../tests/core-concepts/plan/structure.cue.fragment
|
||||||
dagger.#Plan & {
|
|
||||||
client: {
|
|
||||||
filesystem: {
|
|
||||||
// ...
|
|
||||||
}
|
|
||||||
env: {
|
|
||||||
// ...
|
|
||||||
}
|
|
||||||
}
|
|
||||||
actions: {
|
|
||||||
deps: docker.#Build & {
|
|
||||||
// ...
|
|
||||||
}
|
|
||||||
test: bash.#Run & {
|
|
||||||
// ...
|
|
||||||
}
|
|
||||||
build: {
|
|
||||||
run: bash.#Run & {
|
|
||||||
// ...
|
|
||||||
}
|
|
||||||
contents: dagger.#Subdir & {
|
|
||||||
// ...
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
When the above plan gets executed via `dagger do build`, it produces the following output:
|
When the above plan gets executed via `dagger do build`, it produces the following output:
|
||||||
|
@ -42,7 +42,7 @@ With Docker running, we are ready to download our example app and run its CI/CD
|
|||||||
```shell
|
```shell
|
||||||
git clone https://github.com/dagger/dagger
|
git clone https://github.com/dagger/dagger
|
||||||
cd dagger
|
cd dagger
|
||||||
git checkout v0.2.0-beta.1
|
git checkout v0.2.0-beta.2
|
||||||
|
|
||||||
cd pkg/universe.dagger.io/examples/todoapp
|
cd pkg/universe.dagger.io/examples/todoapp
|
||||||
```
|
```
|
||||||
@ -123,7 +123,7 @@ With Docker Engine running, we are ready to download our example app and run its
|
|||||||
```shell
|
```shell
|
||||||
git clone https://github.com/dagger/dagger
|
git clone https://github.com/dagger/dagger
|
||||||
cd dagger
|
cd dagger
|
||||||
git checkout v0.2.0-beta.1
|
git checkout v0.2.0-beta.2
|
||||||
|
|
||||||
cd pkg/universe.dagger.io/examples/todoapp
|
cd pkg/universe.dagger.io/examples/todoapp
|
||||||
```
|
```
|
||||||
|
@ -7,8 +7,8 @@ displayed_sidebar: europa
|
|||||||
|
|
||||||
Dagger can be used with any CI environment (no migration required) and has two important advantages which make the overall experience less error-prone and more efficient:
|
Dagger can be used with any CI environment (no migration required) and has two important advantages which make the overall experience less error-prone and more efficient:
|
||||||
|
|
||||||
1. Instead of YAML you write CUE: typed configuration with built-in formatting
|
1. Instead of YAML, you write [CUE](https://cuelang.org/) - typed configuration with built-in formatting
|
||||||
2. Configuration is executed in buildkit, the execution engine at the heart of Docker
|
2. Configuration is executed in [BuildKit](https://github.com/moby/buildkit), the execution engine at the heart of Docker
|
||||||
|
|
||||||
This makes any CI environment with Docker pre-installed work with Dagger out of the box.
|
This makes any CI environment with Docker pre-installed work with Dagger out of the box.
|
||||||
We started with [CI environments that you told us you are using](https://github.com/dagger/dagger/discussions/1677).
|
We started with [CI environments that you told us you are using](https://github.com/dagger/dagger/discussions/1677).
|
||||||
@ -32,38 +32,7 @@ values={[
|
|||||||
|
|
||||||
<TabItem value="github-actions">
|
<TabItem value="github-actions">
|
||||||
|
|
||||||
`.github/workflows/todoapp.yml`
|
```yaml file=../tests/getting-started/github-actions.yml title=".github/workflows/todoapp.yml"
|
||||||
|
|
||||||
```yaml
|
|
||||||
name: todoapp
|
|
||||||
|
|
||||||
push:
|
|
||||||
# Trigger this workflow only on commits pushed to the main branch
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
|
|
||||||
# Dagger plan gets configured via client environment variables
|
|
||||||
env:
|
|
||||||
# This needs to be unique across all of netlify.app
|
|
||||||
APP_NAME: todoapp-dagger-europa
|
|
||||||
NETLIFY_TEAM: dagger
|
|
||||||
# https://app.netlify.com/user/applications/personal
|
|
||||||
NETLIFY_TOKEN: ${{ secrets.NETLIFY_TOKEN }}
|
|
||||||
DAGGER_LOG_FORMAT: plain
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
dagger:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Clone repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Deploy to Netlify
|
|
||||||
# https://github.com/dagger/dagger-for-github
|
|
||||||
uses: dagger/dagger-for-github@v2
|
|
||||||
with:
|
|
||||||
workdir: pkg/universe.dagger.io/examples/todoapp
|
|
||||||
args: do deploy
|
|
||||||
```
|
```
|
||||||
|
|
||||||
</TabItem>
|
</TabItem>
|
||||||
|
@ -11,7 +11,7 @@ The Dagger CUE API is the set of CUE packages released alongside the Dagger engi
|
|||||||
|
|
||||||
### Plan definition
|
### Plan definition
|
||||||
|
|
||||||
`#Plan` defines the structure of a Dagger plan - a complete configuration executable by `dagger up`.
|
`#Plan` defines the structure of a Dagger plan - a complete configuration executable by `dagger do`.
|
||||||
|
|
||||||
### Core types
|
### Core types
|
||||||
|
|
||||||
|
26
docs/tests/core-concepts/plan/structure.cue.fragment
Normal file
26
docs/tests/core-concepts/plan/structure.cue.fragment
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
dagger.#Plan & {
|
||||||
|
client: {
|
||||||
|
filesystem: {
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
env: {
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
}
|
||||||
|
actions: {
|
||||||
|
deps: docker.#Build & {
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
test: bash.#Run & {
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
build: {
|
||||||
|
run: bash.#Run & {
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
contents: dagger.#Subdir & {
|
||||||
|
// ...
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
30
docs/tests/getting-started/github-actions.yml
Normal file
30
docs/tests/getting-started/github-actions.yml
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
name: todoapp
|
||||||
|
|
||||||
|
push:
|
||||||
|
# Trigger this workflow only on commits pushed to the main branch
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
# Dagger plan gets configured via client environment variables
|
||||||
|
env:
|
||||||
|
# This needs to be unique across all of netlify.app
|
||||||
|
APP_NAME: todoapp-dagger-europa
|
||||||
|
NETLIFY_TEAM: dagger
|
||||||
|
# Get one from https://app.netlify.com/user/applications/personal
|
||||||
|
NETLIFY_TOKEN: ${{ secrets.NETLIFY_TOKEN }}
|
||||||
|
# GitHub Actions friendly logs
|
||||||
|
DAGGER_LOG_FORMAT: plain
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
dagger:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Clone repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Deploy to Netlify
|
||||||
|
uses: dagger/dagger-for-github@v2
|
||||||
|
# See all options at https://github.com/dagger/dagger-for-github
|
||||||
|
with:
|
||||||
|
workdir: pkg/universe.dagger.io/examples/todoapp
|
||||||
|
args: do deploy
|
Reference in New Issue
Block a user