@fishawack/lab-env 4.35.0 → 4.35.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.gitmodules ADDED
@@ -0,0 +1,3 @@
1
+ [submodule "core/1"]
2
+ path = core/1
3
+ url = git@bitbucket.org:fishawackdigital/lab-env-core-1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  ## Changelog
2
2
 
3
+ ### 4.35.1 (2024-10-02)
4
+
5
+ #### Build Updates
6
+
7
+ * added setup script that inits submodules ([cdb1415](https://bitbucket.org/fishawackdigital/lab-env/commits/cdb14156ae73ef188d804ce84a5900f74d964e55))
8
+ * Bumped lab-env-core-1 ([9fbdae6](https://bitbucket.org/fishawackdigital/lab-env/commits/9fbdae666f9c70ca82ca891c1027413415b8caac))
9
+ * commit and open pull request against aws-runner on publish" ([174cb20](https://bitbucket.org/fishawackdigital/lab-env/commits/174cb2031dac53121e11c237cd3ddf54d93b6744))
10
+ * escape quote in include check ([658f4ba](https://bitbucket.org/fishawackdigital/lab-env/commits/658f4ba6dadd217ce07486f1165a2a312892f7df))
11
+ * exit early if semantic release doesnt publish anything ([99c7b9f](https://bitbucket.org/fishawackdigital/lab-env/commits/99c7b9fb13b55713fb4f522e08d98c778376fc9b))
12
+ * installed core/1 as a submodule ([f40ad71](https://bitbucket.org/fishawackdigital/lab-env/commits/f40ad711acab83c29b30c3817c0731a956f44abb))
13
+ * publish on more commit types ([4b8ac27](https://bitbucket.org/fishawackdigital/lab-env/commits/4b8ac2725d1a218c516682ec727ce869ddde1237))
14
+ * remove core/1 from repo ([35e96ce](https://bitbucket.org/fishawackdigital/lab-env/commits/35e96ce7ea4723cdf5b144ce28f219b0ce4ca040))
15
+ * use setup script instead of ci directly ([4e2464c](https://bitbucket.org/fishawackdigital/lab-env/commits/4e2464c6d0fd545a2fe4d91821ff56715a6816d6))
16
+
3
17
  ### 4.35.0 (2024-09-26)
4
18
 
5
19
  #### Features
@@ -39,7 +39,7 @@ pipelines:
39
39
  # Own the .tmp folder as aws-runner so that a non-root user id can be mapped to each container
40
40
  - chown -R aws-runner:aws-runner /tmp
41
41
  # Install
42
- - su aws-runner -c 'npm ci'
42
+ - su aws-runner -c 'npm run setup'
43
43
  # Test
44
44
  - su aws-runner -c 'npm test'
45
45
  services:
@@ -56,7 +56,42 @@ pipelines:
56
56
  script:
57
57
  # Install release deps
58
58
  - npm install -g semantic-release@24 @semantic-release/changelog@6 @semantic-release/git@10 conventional-changelog-conventionalcommits@8
59
- # Release version
60
- - semantic-release --repositoryUrl=https://$GIT_CREDENTIALS@bitbucket.org/$BITBUCKET_REPO_FULL_NAME
59
+ # Release version via node so can exit out when no release made
60
+ - |
61
+ node -e "const spawn = require('child_process').spawn('semantic-release', ['--repositoryUrl', 'https://$GIT_CREDENTIALS@bitbucket.org/$BITBUCKET_REPO_FULL_NAME'], { env: { ...process.env, FORCE_COLOR: true } }); spawn.stderr.on('data', d => process.stderr.write(d.toString())); spawn.stdout.on('data', d => {process.stdout.write(d.toString()); if(d.toString().includes('There are no relevant changes, so no new version is released.') || d.toString().includes('therefore a new version won\'t be published.')){process.exit(1);}})" || exit 0
61
62
  # Sync development after publish
62
- - git fetch origin "+refs/heads/*:refs/remotes/origin/*" && git checkout -b development origin/development && git merge master && git push origin development
63
+ - git fetch origin "+refs/heads/*:refs/remotes/origin/*" && git checkout -b development origin/development && git merge master && git push origin development
64
+ # Commit and create pull request for new version on aws-runner repo
65
+ - git config --global user.email "digital@fishawack.com"
66
+ - git config --global user.name "Digital Fishawack"
67
+ - git clone https://$GIT_CREDENTIALS@bitbucket.org/fishawackdigital/aws-runner
68
+ - cd aws-runner
69
+ - git checkout -b "$BITBUCKET_REPO_SLUG-$BITBUCKET_COMMIT" origin/development
70
+ - sed -i -e "s/\(@fishawack\/lab-env@\).*/\1$(git ls-remote --tags --refs --sort="v:refname" https://$GIT_CREDENTIALS@bitbucket.org/$BITBUCKET_REPO_FULL_NAME | tail -n1 | sed 's/.*\///')/g" Dockerfile
71
+ - git add .
72
+ - |
73
+ git commit --allow-empty -m "build: Bumped $BITBUCKET_REPO_SLUG"
74
+ - git push origin "$BITBUCKET_REPO_SLUG-$BITBUCKET_COMMIT"
75
+ - |
76
+ curl https://api.bitbucket.org/2.0/repositories/fishawackdigital/aws-runner/pullrequests \
77
+ -u $GIT_CREDENTIALS \
78
+ --header 'Content-Type: application/json' \
79
+ --data "{
80
+ \"title\": \"Bumped $BITBUCKET_REPO_SLUG\",
81
+ \"destination\": {
82
+ \"branch\": {
83
+ \"name\": \"development\"
84
+ }
85
+ },
86
+ \"source\": {
87
+ \"branch\": {
88
+ \"name\": \"$BITBUCKET_REPO_SLUG-$BITBUCKET_COMMIT\"
89
+ }
90
+ },
91
+ \"reviewers\": [
92
+ {
93
+ \"uuid\": \"{2518e4c3-fc1d-4653-b355-c00be099ce6c}\"
94
+ }
95
+ ],
96
+ \"close_source_branch\": true
97
+ }"
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@fishawack/lab-env",
3
- "version": "4.35.0",
3
+ "version": "4.35.1",
4
4
  "description": "Docker manager for FW",
5
5
  "main": "cli.js",
6
6
  "scripts": {
7
+ "setup": "npm ci && git submodule init && git submodule update",
7
8
  "test": "rm -rf _Test/_fixtures/boilerplate*; CI_BUILD_ID=true mocha _Test/*.js --timeout 12000s --bail"
8
9
  },
9
10
  "repository": {
@@ -54,7 +55,29 @@
54
55
  [
55
56
  "@semantic-release/commit-analyzer",
56
57
  {
57
- "preset": "conventionalcommits"
58
+ "preset": "conventionalcommits",
59
+ "releaseRules": [
60
+ {
61
+ "type": "build",
62
+ "release": "patch"
63
+ },
64
+ {
65
+ "type": "perf",
66
+ "release": "patch"
67
+ },
68
+ {
69
+ "type": "ci",
70
+ "release": "patch"
71
+ },
72
+ {
73
+ "type": "refactor",
74
+ "release": "patch"
75
+ },
76
+ {
77
+ "type": "style",
78
+ "release": "patch"
79
+ }
80
+ ]
58
81
  }
59
82
  ],
60
83
  [
@@ -66,7 +89,37 @@
66
89
  "mainTemplate": "{{> header}}\n{{#each commitGroups}}\n\n{{#if title}}\n#### {{title}}\n\n{{/if}}\n{{#each commits}}\n{{> commit root=@root}}\n{{/each}}\n{{/each}}"
67
90
  },
68
91
  "presetConfig": {
69
- "commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commits/{{hash}}"
92
+ "commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commits/{{hash}}",
93
+ "types": [
94
+ {
95
+ "type": "feat",
96
+ "section": "Features"
97
+ },
98
+ {
99
+ "type": "fix",
100
+ "section": "Bug Fixes"
101
+ },
102
+ {
103
+ "type": "build",
104
+ "section": "Build Updates"
105
+ },
106
+ {
107
+ "type": "perf",
108
+ "section": "Performance Improvements"
109
+ },
110
+ {
111
+ "type": "ci",
112
+ "section": "CI/CD updates"
113
+ },
114
+ {
115
+ "type": "refactor",
116
+ "section": "Code Refactors"
117
+ },
118
+ {
119
+ "type": "style",
120
+ "section": "Style Updates"
121
+ }
122
+ ]
70
123
  }
71
124
  }
72
125
  ],
@@ -1,52 +0,0 @@
1
- ## Changelog
2
-
3
- ### 1.4.1 (2024-07-17)
4
- * [fix] set global var for git across file system so git avail in mounted volumes i.e node_modules
5
-
6
- ### 1.4.0 (2024-06-04)
7
- * [feat] bumped node from 18 to 20
8
-
9
- ### 1.3.3 (2024-02-09)
10
- * [fix] symlink wine64 now htat wine is the default global command but electron expects wine64
11
-
12
- ### 1.3.2 (2024-01-24)
13
- * [fix] install latest eb cli and use node images python rather than pyenv
14
-
15
- ### 1.3.1 (2024-01-22)
16
- * [fix] rebuild of image to get the latest chromium version to fix new puppeteer headless mode
17
-
18
- ### 1.3.0 (2023-03-17)
19
- * [feat] node user is now added to www-data group for easier file permission management
20
- * [fix] disable npm message about update being available
21
-
22
- ### 1.2.2 (2023-02-25)
23
- * [fix] set BRANCH and CI_COMMIT_REF_NAME env variables in container
24
- * [fix] installed git-branch to fetch the current branch for deployment targets
25
- * [refactor] moved global node module symlinking to alpine image for future use
26
-
27
- ### 1.2.1 (2023-02-25)
28
- * [fix] install eb cli into root of image rather than root user directory
29
- * [perf] dont recurse and dont change group of node_modules to speed up command
30
- * [refactor] set node git flag without switching user directly in dockerfile
31
-
32
- ### 1.1.4 (2023-02-23)
33
- * [Fix] Installed missing are-you-es5 global npm module
34
- * [Fix] Installed missing check-dependencies global npm module
35
-
36
- ### 1.1.3 (2023-02-23)
37
- * [Fix] Switch to ENV for $PATH updates to avoid shell profile loading issues
38
- * [Fix] Moved chromium to alpine image as its needed for svg tasks and testing
39
-
40
- ### 1.1.2 (2023-02-22)
41
- * [Fix] cd into $PWD after su command or we'll start in users home directory
42
-
43
- ### 1.1.1 (2023-02-22)
44
- * [Fix] Use -l login flag for su command for both non interactive and interactive shells
45
- * [Fix] Switch $PATH writes to .profile so they are executed on non interactive shells
46
-
47
- ### 1.1.0 (2023-02-22)
48
- * [Feature] Watertight now baked into image so not needed in package.json of projects
49
- * [Fix] lftp installed in alpine image as it's needed for content tasks
50
-
51
- ### 1.0.0 (2023-02-21)
52
- * [Misc] initial commit
package/core/1/Dockerfile DELETED
@@ -1,110 +0,0 @@
1
- #####
2
- # Alpine image
3
- #####
4
-
5
- FROM node:20.6 AS alpine
6
-
7
- LABEL org.opencontainers.image.authors="Mike Mellor <mike.mellor@avalerehealth.com>"
8
-
9
- ARG TARGETARCH
10
-
11
- WORKDIR /app
12
-
13
- EXPOSE 3000
14
- EXPOSE 3001
15
-
16
- # Get latest apt-get
17
- RUN apt-get update
18
-
19
- # Update npm to latest
20
- RUN npm install -g npm@latest
21
-
22
- # Install dart sass vm (arch switch)
23
- RUN curl -L -o /sass.tar.gz https://github.com/sass/dart-sass/releases/download/1.57.1/dart-sass-1.57.1-linux-$(if [ "$TARGETARCH" = "arm64" ]; then echo 'arm64'; else echo 'x64'; fi).tar.gz
24
- RUN tar -xf /sass.tar.gz -C /
25
- ENV PATH="${PATH}:/dart-sass/"
26
- RUN rm -rf /sass.tar.gz
27
-
28
- # Set safe directory to remove intel errors when running git rev-parse
29
- RUN su node -c "git config --global --add safe.directory /app"
30
-
31
- # Also set global git flag for allowing access across filesystems for mounted node_modules dir
32
- ENV GIT_DISCOVERY_ACROSS_FILESYSTEM=1
33
-
34
- # Disable npm message about updates being available
35
- RUN su node -c "npm config set update-notifier false"
36
-
37
- # Add node user to www-data group
38
- RUN usermod -a -G www-data node
39
-
40
- # Install lftp
41
- RUN apt-get install -y lftp
42
-
43
- # Install chromium
44
- RUN apt-get install -y chromium fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 --no-install-recommends
45
- # Stop Puppeteer downloading browsers during npm install
46
- ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
47
- ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium
48
-
49
- # Install package.json checker
50
- RUN npm install check-dependencies -g
51
-
52
- # Install node_modules checker
53
- RUN npm install are-you-es5 -g
54
-
55
- # Install git branch fetcher
56
- RUN npm install git-branch -g
57
-
58
- # Link root global node_modules to ~/.node_modules
59
- RUN ln -s /usr/local/lib/node_modules/ /home/node/.node_modules
60
-
61
- # Cleanup apt-get install folders
62
- RUN apt-get clean && \
63
- rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
64
-
65
- COPY entrypoint.sh /bin/entrypoint.sh
66
- RUN chmod +x /bin/entrypoint.sh
67
- ENTRYPOINT ["/bin/entrypoint.sh"]
68
-
69
- #####
70
- # Full image
71
- #####
72
-
73
- FROM alpine AS full
74
-
75
- # Get latest apt-get
76
- RUN apt-get update
77
-
78
- # Install ghostscript
79
- RUN apt-get install -y ghostscript
80
-
81
- # Install zip
82
- RUN apt-get install zip
83
-
84
- # Install AWS Elastic Beanstalk cli
85
- ENV PATH="${PATH}:/.ebcli-virtual-env/executables"
86
- RUN apt-get -y install python-is-python3 python3-pip && \
87
- pip install virtualenv --break-system-packages && \
88
- git clone https://github.com/aws/aws-elastic-beanstalk-cli-setup.git ~/aws-eb && \
89
- python ~/aws-eb/scripts/ebcli_installer.py --location / && \
90
- rm -rf ~/aws-eb
91
-
92
- # Install AWS-CLI@2 (arch switch)
93
- RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-$(if [ "$TARGETARCH" = "arm64" ]; then echo 'aarch64'; else echo 'x86_64'; fi).zip" -o "awscliv2.zip"
94
- RUN unzip awscliv2.zip
95
- RUN ./aws/install
96
- RUN rm -rf ./aws && rm -rf awscliv2.zip
97
-
98
- # Update electron globally
99
- RUN npm install -g electron-packager@latest
100
-
101
- # Install wine64
102
- RUN apt-get install -y wine64 && \
103
- ln -s /usr/bin/wine /usr/bin/wine64
104
-
105
- # Install watertight
106
- RUN --mount=type=ssh npm install -g git+ssh://git@bitbucket.org/fishawackdigital/watertight-node-auto.git#v6.0.0
107
-
108
- # Cleanup apt-get install folders
109
- RUN apt-get clean && \
110
- rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
@@ -1,36 +0,0 @@
1
- services:
2
- core:
3
- build:
4
- context: $FW_CORE_1_CONTEXT
5
- target: $FW_CORE_1_TARGET
6
- ssh:
7
- - default
8
- args:
9
- target: $FW_CORE_1_TARGET
10
- target_image: $FW_CORE_1_TARGET_IMAGE
11
- image: $FW_CORE_1_IMAGE:${FW_CORE_1_VERSION:-latest}
12
- init: true
13
- tty: true
14
- volumes:
15
- - $CWD/:/app
16
- - $FW_DIR/targets:/home/node/targets
17
- - $FW_DIR/.ssh:/home/node/.ssh
18
- - $FW_DIR/.aws:/home/node/.aws
19
- - node_modules:/app/node_modules
20
- ports:
21
- - ${PORT:-3000}:${PORT:-3000}
22
- - ${PORT_OPT:-3001}:${PORT_OPT:-3001}
23
- environment:
24
- - REPO=${REPO:-}
25
- - PORT=${PORT:-3000}
26
- - PORT_OPT=${PORT_OPT:-3001}
27
- - PORT_WEB=${PORT_WEB:-8000}
28
- - PORT_DB=${PORT_DB:-3306}
29
- - USER_UID=${USER_UID:-0}
30
- - USER_GID=${USER_GID:-0}
31
- - FW_ROOT=${FW_ROOT:-}
32
- - BRANCH=${BRANCH:-}
33
- - CI_COMMIT_REF_NAME=${CI_COMMIT_REF_NAME:-}
34
- volumes:
35
- node_modules:
36
- driver: "local"
@@ -1,21 +0,0 @@
1
- #!/bin/bash
2
-
3
- # Setting $FW_ROOT will bypass the user switch to node
4
- if [ -z "$FW_ROOT" ]; then
5
- # Set node user id to match host users id so no permission issues outside of docker
6
- usermod -u $USER_UID node &>/dev/null
7
-
8
- # Own the node_modules folder otherwise it'll be owned by root/previous node id which will prevent writing
9
- chown node /app/node_modules
10
-
11
- # Default arguments will always be bash -l, if nothing follows this just start an non login interactive shell
12
- if [ -z "${@:3}" ]; then
13
- exec su node
14
- # Otherwise pipe the command after the bash -lc into the non login non interactive shell as a command to exec
15
- else
16
- exec su node -c "${@:3}"
17
- fi
18
- else
19
- echo "Accessing as root"
20
- exec "$@"
21
- fi
@@ -1,11 +0,0 @@
1
- {
2
- "name": "core",
3
- "version": "1.4.1",
4
- "description": "lab-env docker config for the @fishawack/core/1 npm module",
5
- "scripts": {
6
- "preversion": "docker login",
7
- "postversion": "docker buildx build --ssh default --platform linux/amd64,linux/arm64 -t fishawack/lab-env-core-1:$npm_package_version -t fishawack/lab-env-core-1:latest --push . && docker buildx build --ssh default --target alpine --platform linux/amd64,linux/arm64 -t fishawack/lab-env-core-1-alpine:$npm_package_version -t fishawack/lab-env-core-1-alpine:latest --push . && git add . && git commit -m \"build: Bumped fishawack/lab-env-core-1 to $npm_package_version\""
8
- },
9
- "author": "Mike Mellor",
10
- "license": "ISC"
11
- }