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

feat: Upgrade packages #49

Merged
merged 1 commit into from
Sep 23, 2024

feat: Upgrade packages

76c3ea9
Select commit
Loading
Failed to load commit list.
Merged

feat: Upgrade packages #49

feat: Upgrade packages
76c3ea9
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Sep 23, 2024 in 6m 13s

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 #49 feat: Upgrade packages.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in parallel.

Job Node.js ENV OS State
104.1 Lint 20 MATTERMOST_CHANNEL='{"dev":"app-photos","beta":"app-photos,publication","stable":"app-photos,publication"}' Linux passed
104.2 Test 20 MATTERMOST_CHANNEL='{"dev":"app-photos","beta":"app-photos,publication","stable":"app-photos,publication"}' Linux passed
104.3 Build app 20 MATTERMOST_CHANNEL='{"dev":"app-photos","beta":"app-photos,publication","stable":"app-photos,publication"}' Linux passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Jammy)
Node.js Version 20
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "node_js": [
    "20"
  ],
  "cache": {
    "yarn": true
  },
  "branches": {
    "only": [
      "master",
      "/^\\d+\\.\\d+\\.\\d+(\\-beta.\\d+)?$/"
    ]
  },
  "env": [
    "global={:MATTERMOST_CHANNEL=>\"'{\\\"dev\\\":\\\"app-photos\\\",\\\"beta\\\":\\\"app-photos,publication\\\",\\\"stable\\\":\\\"app-photos,publication\\\"}'\"}=MATTERMOST_HOOK_URL=[secure]=REGISTRY_TOKEN=[secure]=GITHUB_TOKEN=[secure]"
  ],
  "jobs": {
    "include": [
      {
        "name": "Lint",
        "script": [
          "yarn lint"
        ]
      },
      {
        "name": "Test",
        "script": [
          "yarn test"
        ]
      },
      {
        "name": "Build app",
        "before_script": [
          "[ \"$TRAVIS_SECURE_ENV_VARS\" != \"false\" ] && openssl aes-256-cbc -K $encrypted_497d1a9dc404_key -iv $encrypted_497d1a9dc404_iv -in id_rsa_downcloud_photos.enc -out id_rsa_downcloud_photos -d",
          "[ \"$TRAVIS_SECURE_ENV_VARS\" != \"false\" ] && eval \"$(ssh-agent -s)\"",
          "[ \"$TRAVIS_SECURE_ENV_VARS\" != \"false\" ] && chmod 600 id_rsa_downcloud_photos",
          "[ \"$TRAVIS_SECURE_ENV_VARS\" != \"false\" ] && ssh-add id_rsa_downcloud_photos"
        ],
        "script": [
          "yarn build"
        ],
        "before_deploy": [
          "yarn add cozy-app-publish"
        ],
        "deploy": [
          {
            "repo": "cozy/cozy-photos",
            "provider": "script",
            "skip_cleanup": true,
            "script": "yarn run deploy",
            "on": {
              "branch": [
                "master"
              ]
            }
          },
          {
            "repo": "cozy/cozy-photos",
            "provider": "script",
            "skip_cleanup": true,
            "script": "yarn run deploy",
            "on": {
              "tags": true
            }
          }
        ]
      }
    ]
  }
}