Developing on a site with a database



Search Results

Here is an example using a multi-line YAML string.

1
2
3
4
5
6
7
8
9
10
11
12
assets:
  - dev.sql.gz
steps:
  - name: List Pull Request files
    plugin: Script
    script: |
      gunzip -c $ASSET_DIR/dev.sql.gz | `mysql foo`
      rm $ASSET_DIR/dev.sql.gz
      cd $SRC_DIR
      files=$(ls)
      echo "Listing all files included in this Pull Request..."
      echo files $files

Here is an example using traditional YAML syntax.

1
2
3
4
5
6
7
8
9
10
11
12
assets:
  - dev.sql.gz
steps:
  - name: List Pull Request files
    plugin: Script
    script:
      - gunzip -c $ASSET_DIR/dev.sql.gz | `mysql foo`
      - rm $ASSET_DIR/dev.sql.gz
      - cd $SRC_DIR
      - files=$(ls)
      - echo "Listing all files included in this Pull Request..."
      - echo files $files
Get Started with Probo.CI

Want to Try Probo today?
Get Started Fast!.

When you sign up for a Probo.CI registration code, you will get a two week trial of the plan of your choosing. For more information on how to get started, click here .

LEARN MORE ABOUT PROBO.CI'S PRICING