ci_toolkit 1.3.15 → 1.3.20

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d1e3e58805fc937eeb361100fb7593ca8f91b0188a17e88191db6007f958048a
4
- data.tar.gz: e4ae0e924d73db4b8b11888e735478baea0ebaaac07a6a99f656f1a5a8ce0fcf
3
+ metadata.gz: 2096ce820b686ee44a17e3576dc90aa18fd4f1531dd9f10ca2b511dd65ec6121
4
+ data.tar.gz: 879e014ce2774ed78a47ac07b6779237b0dcae70880acbf031a73d4ea5760987
5
5
  SHA512:
6
- metadata.gz: 1a93b855597611ee72ac21811a4989cda55f935ee61860a49dcb00e0a656bc510e2b13faf456799654a00a147233246af8b2d67ad214139dac43f8ff6a5eaf68
7
- data.tar.gz: 9da26b3bcdd14d1c16a98f96705b7e5c190562a929cffe9181c09ac8ccdfe3f0e49dcebfa762492f6e776a83acb850be9fbf54c3de831357c34c5be576195449
6
+ metadata.gz: 7bb137b59486325c1cde56d1995ade924069ed12e8f6ab5ce21eabf2eb938cf9be74fb318737fbb3d5db33b87c863e7485fb880dc7dab9fb458f1df88ac5045f
7
+ data.tar.gz: a090967762827cd57762cbc4984b6bb18026ffb2ae5612e9d10735b0815bf153f4a8a7653a5b28b43b2711be8592b2d7f315de8a3a676b8e6ae1f49e08289f44
@@ -0,0 +1,13 @@
1
+ # [Choice] Ruby version (use -bullseye variants on local arm64/Apple Silicon): 3, 3.0, 2, 2.7, 2.6, 3-bullseye, 3.0-bullseye, 2-bullseye, 2.7-bullseye, 2.6-bullseye, 3-buster, 3.0-buster, 2-buster, 2.7-buster, 2.6-buster
2
+ ARG VARIANT=2-bullseye
3
+ FROM mcr.microsoft.com/vscode/devcontainers/ruby:0-${VARIANT}
4
+
5
+ # [Choice] Node.js version: none, lts/*, 16, 14, 12, 10
6
+ ARG NODE_VERSION="none"
7
+ RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi
8
+
9
+ # [Optional] Uncomment this line to install additional gems.
10
+ RUN gem install bundler
11
+
12
+ # [Optional] Uncomment this line to install global node packages.
13
+ # RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g <your-package-here>" 2>&1
@@ -0,0 +1,43 @@
1
+ # [Choice] Ruby version (use -bullseye variants on local arm64/Apple Silicon): 3, 3.0, 2, 2.7, 2.6, 3-bullseye, 3.0-bullseye, 2-bullseye, 2.7-bullseye, 2.6-bullseye, 3-buster, 3.0-buster, 2-buster, 2.7-buster, 2.6-buster
2
+ ARG VARIANT=2-bullseye
3
+ FROM ruby:${VARIANT}
4
+
5
+ # Copy library scripts to execute
6
+ COPY library-scripts/*.sh library-scripts/*.env /tmp/library-scripts/
7
+
8
+ # [Option] Install zsh
9
+ ARG INSTALL_ZSH="true"
10
+ # [Option] Upgrade OS packages to their latest versions
11
+ ARG UPGRADE_PACKAGES="true"
12
+ # Install needed packages and setup non-root user. Use a separate RUN statement to add your own dependencies.
13
+ ARG USERNAME=vscode
14
+ ARG USER_UID=1000
15
+ ARG USER_GID=$USER_UID
16
+ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
17
+ # Remove imagemagick due to https://security-tracker.debian.org/tracker/CVE-2019-10131
18
+ && apt-get purge -y imagemagick imagemagick-6-common \
19
+ # Install common packages, non-root user, rvm, core build tools
20
+ && bash /tmp/library-scripts/common-debian.sh "${INSTALL_ZSH}" "${USERNAME}" "${USER_UID}" "${USER_GID}" "${UPGRADE_PACKAGES}" "true" "true" \
21
+ && bash /tmp/library-scripts/ruby-debian.sh "none" "${USERNAME}" "true" "true" \
22
+ && apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
23
+
24
+ # [Choice] Node.js version: none, lts/*, 16, 14, 12, 10
25
+ ARG NODE_VERSION="none"
26
+ ENV NVM_DIR=/usr/local/share/nvm
27
+ ENV NVM_SYMLINK_CURRENT=true \
28
+ PATH=${NVM_DIR}/current/bin:${PATH}
29
+ RUN bash /tmp/library-scripts/node-debian.sh "${NVM_DIR}" "${NODE_VERSION}" "${USERNAME}" \
30
+ && apt-get clean -y && rm -rf /var/lib/apt/lists/*
31
+
32
+ # Remove library scripts for final image
33
+ RUN rm -rf /tmp/library-scripts
34
+
35
+ # [Optional] Uncomment this section to install additional OS packages.
36
+ # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
37
+ # && apt-get -y install --no-install-recommends <your-package-list-here>
38
+
39
+ # [Optional] Uncomment this line to install additional gems.
40
+ # RUN gem install <your-gem-names-here>
41
+
42
+ # [Optional] Uncomment this line to install global node packages.
43
+ # RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g <your-package-here>" 2>&1
@@ -0,0 +1,35 @@
1
+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
2
+ // https://github.com/microsoft/vscode-dev-containers/tree/v0.202.5/containers/ruby
3
+ {
4
+ "name": "Ruby",
5
+ "runArgs": ["--init"],
6
+ "build": {
7
+ "dockerfile": "Dockerfile",
8
+ "args": {
9
+ // Update 'VARIANT' to pick a Ruby version: 3, 3.0, 2, 2.7, 2.6
10
+ // Append -bullseye or -buster to pin to an OS version.
11
+ // Use -bullseye variants on local on arm64/Apple Silicon.
12
+ "VARIANT": "3-bullseye",
13
+ // Options
14
+ "NODE_VERSION": "none"
15
+ }
16
+ },
17
+
18
+ // Set *default* container specific settings.json values on container create.
19
+ "settings": {},
20
+
21
+ // Add the IDs of extensions you want installed when the container is created.
22
+ "extensions": [
23
+ "rebornix.Ruby"
24
+ ],
25
+
26
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
27
+ // "forwardPorts": [],
28
+
29
+ // Use 'postCreateCommand' to run commands after the container is created.
30
+ "postCreateCommand": "bundle install",
31
+
32
+ // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
33
+ "remoteUser": "vscode"
34
+
35
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "ruby.useLanguageServer": true,
3
+ "ruby.useBundler": true,
4
+ "ruby.lint": {
5
+ "rubocop": {
6
+ "useBundler": true // enable rubocop via bundler
7
+ }
8
+ },
9
+ "ruby.intellisense": "rubyLocate",
10
+ "ruby.codeCompletion": "rcodetools"
11
+ }
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ci_toolkit (1.3.15)
4
+ ci_toolkit (1.3.20)
5
5
  faraday
6
6
  faraday_middleware
7
7
  jwt
data/lib/ci_toolkit.rb CHANGED
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "ci_toolkit/version"
4
-
5
3
  require "ci_toolkit/bitrise_env"
6
4
  require "ci_toolkit/build"
7
5
  require "ci_toolkit/build_status"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ci_toolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.15
4
+ version: 1.3.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gero Keller
@@ -186,8 +186,12 @@ executables: []
186
186
  extensions: []
187
187
  extra_rdoc_files: []
188
188
  files:
189
+ - ".devcontainer/Dockerfile"
190
+ - ".devcontainer/base.Dockerfile"
191
+ - ".devcontainer/devcontainer.json"
189
192
  - ".rspec"
190
193
  - ".rubocop.yml"
194
+ - ".vscode/settings.json"
191
195
  - CHANGELOG.md
192
196
  - CODE_OF_CONDUCT.md
193
197
  - Gemfile
@@ -210,7 +214,6 @@ files:
210
214
  - lib/ci_toolkit/jira.rb
211
215
  - lib/ci_toolkit/pr_messenger.rb
212
216
  - lib/ci_toolkit/pr_messenger_text.rb
213
- - lib/ci_toolkit/version.rb
214
217
  - transform_coverage_data.rb
215
218
  homepage: https://github.com/crvshlab/ci_toolkit
216
219
  licenses:
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module CiToolkit
4
- VERSION = "1.3.15"
5
- end