Skip to content

Commit

Permalink
fix: Bitbucket pipelines configuration (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkleszcz authored Dec 11, 2024
1 parent 9ddcb35 commit 2eb2176
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion bitbucket-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ clone:
definitions:
services:
docker:
memory: 7128
memory: 3072
docker-small:
type: docker
memory: 1024
Expand Down Expand Up @@ -45,6 +45,14 @@ definitions:
&& unzip -qq "${AWS_CLI_DEST_PATH}"
&& /bin/bash ./aws/install
&& aws --version

setupDockerCompose:
&setupDockerCompose |
apt-get update && apt-get install -y curl
mkdir -p ~/.docker/cli-plugins
curl -SL https://github.com/docker/compose/releases/download/v2.20.2/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
chmod +x ~/.docker/cli-plugins/docker-compose

installWebappDeps: &installWebappDeps pnpm install
--include-workspace-root
--frozen-lockfile
Expand Down Expand Up @@ -344,6 +352,7 @@ definitions:
script:
- *initializeStep
- *setupAwsCli
- *setupDockerCompose
- pnpm install
--include-workspace-root
--frozen-lockfile
Expand Down Expand Up @@ -373,6 +382,7 @@ definitions:
script:
- *initializeStep
- *setupAwsCli
- *setupDockerCompose
- pnpm install
--include-workspace-root
--frozen-lockfile
Expand Down Expand Up @@ -401,6 +411,7 @@ definitions:
script:
- *initializeStep
- *setupAwsCli
- *setupDockerCompose
- pnpm install
--include-workspace-root
--frozen-lockfile
Expand Down Expand Up @@ -457,6 +468,7 @@ definitions:
script:
- *initializeStep
- *setupAwsCli
- *setupDockerCompose
- pnpm install
--include-workspace-root
--frozen-lockfile
Expand Down

0 comments on commit 2eb2176

Please sign in to comment.