Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update instruction to install the offline version of studio pro when installing on ARM #8797

Open
wants to merge 1 commit into
base: development
Choose a base branch
from

Add instruction to install the offline version of studio pro related …

b5a411a
Select commit
Loading
Failed to load commit list.
Open

Update instruction to install the offline version of studio pro when installing on ARM #8797

Add instruction to install the offline version of studio pro related …
b5a411a
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Dec 13, 2024 in 5m 49s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #8797 Update instruction to install the offline version of studio pro when installing on ARM.
Any changes that have been made to the development branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Jammy)
Node.js Version 20.9
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "node_js": [
    "20.9"
  ],
  "arch": [
    "amd64"
  ],
  "git": {
    "depth": 20000,
    "quiet": true,
    "submodules": false
  },
  "env": [
    "global={}"
  ],
  "branches": {
    "only": [
      "production",
      "development"
    ]
  },
  "before_install": [
    "npm install"
  ],
  "install": [
    "mkdir public",
    "./node_modules/.bin/hugo config --environment $TRAVIS_BRANCH",
    "printf '\\033[37;42;1m' > $TRAVIS_BUILD_DIR/hugo.log",
    "echo \"HUGO was run for environment $TRAVIS_BRANCH\" >> $TRAVIS_BUILD_DIR/hugo.log",
    "printf '\\033[0;22mm' >> $TRAVIS_BUILD_DIR/hugo.log",
    "set -o pipefail",
    "./node_modules/.bin/hugo --environment $TRAVIS_BRANCH 2>&1 | tee -a $TRAVIS_BUILD_DIR/hugo.log",
    "set +o pipefail",
    "printf '\\033[37;42;1m' >> $TRAVIS_BUILD_DIR/hugo.log",
    "echo \"Any errors from HTMLTEST will be treated as warnings - the build will continue.\" >> $TRAVIS_BUILD_DIR/hugo.log",
    "printf '\\033[0;22m' >> $TRAVIS_BUILD_DIR/hugo.log",
    "chmod +x ./htmltest/htmltest",
    "./htmltest/htmltest 2>&1 | sed \"s/\\o033\\[91/\\o033\\[31/g; s/\\o033\\[92/\\o033\\[32/g\" |tee -a $TRAVIS_BUILD_DIR/hugo.log"
  ],
  "before_script": [
    "pyenv versions",
    "pyenv global 3.8",
    "python -V"
  ],
  "script": [
    "printf '\\n\\n%s\\n\\n' \"$(<$TRAVIS_BUILD_DIR/hugo.log)\""
  ],
  "before_deploy": [
    "curl \"https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip\" -o \"awscliv2.zip\"",
    "unzip -q awscliv2.zip",
    "sudo ./aws/install",
    "aws --version",
    "chmod +x $TRAVIS_BUILD_DIR/_scripts/deploy.sh",
    "python --version",
    "pip install --upgrade 'algoliasearch>=2.0,<3.0'"
  ],
  "deploy": [
    {
      "provider": "script",
      "edge": true,
      "script": "$TRAVIS_BUILD_DIR/_scripts/deploy.sh",
      "on": {
        "branch": [
          "production",
          "development"
        ]
      }
    }
  ],
  "after_deploy": [
],
"after_script": [
]
}