Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • catladder/catladder
1 result
Show changes
Commits on Source (2)
## [3.8.7](https://git.panter.ch/catladder/catladder/compare/v3.8.6...v3.8.7) (2025-01-31)
## [3.8.6](https://git.panter.ch/catladder/catladder/compare/v3.8.5...v3.8.6) (2025-01-27)
## [3.8.5](https://git.panter.ch/catladder/catladder/compare/v3.8.4...v3.8.5) (2025-01-27)
......
......@@ -166,7 +166,6 @@ app 🧪 test:
- collapseable_section_end "injectvars"
- docker login --username gitlab-ci-token --password $CI_JOB_TOKEN $CI_REGISTRY
- cd .
- docker pull $DOCKER_CACHE_IMAGE || true
- wget --output-document=- https://github.com/buildpacks/pack/releases/download/v0.36.4/pack-v0.36.4-linux.tgz | tar -zx --directory /usr/local/bin pack
- chmod +x /usr/local/bin/pack
- sed --in-place 's|git@\\([^:]*\\):|https://\\1/|g' Gemfile Gemfile.lock
......@@ -486,7 +485,6 @@ app 🧪 test:
- collapseable_section_end "injectvars"
- docker login --username gitlab-ci-token --password $CI_JOB_TOKEN $CI_REGISTRY
- cd .
- docker pull $DOCKER_CACHE_IMAGE || true
- wget --output-document=- https://github.com/buildpacks/pack/releases/download/v0.36.4/pack-v0.36.4-linux.tgz | tar -zx --directory /usr/local/bin pack
- chmod +x /usr/local/bin/pack
- sed --in-place 's|git@\\([^:]*\\):|https://\\1/|g' Gemfile Gemfile.lock
......@@ -812,7 +810,6 @@ app 🧪 test:
- collapseable_section_end "injectvars"
- docker login --username gitlab-ci-token --password $CI_JOB_TOKEN $CI_REGISTRY
- cd .
- docker pull $DOCKER_CACHE_IMAGE || true
- wget --output-document=- https://github.com/buildpacks/pack/releases/download/v0.36.4/pack-v0.36.4-linux.tgz | tar -zx --directory /usr/local/bin pack
- chmod +x /usr/local/bin/pack
- sed --in-place 's|git@\\([^:]*\\):|https://\\1/|g' Gemfile Gemfile.lock
......@@ -1125,7 +1122,6 @@ app 🧪 test:
- collapseable_section_end "injectvars"
- docker login --username gitlab-ci-token --password $CI_JOB_TOKEN $CI_REGISTRY
- cd .
- docker pull $DOCKER_CACHE_IMAGE || true
- wget --output-document=- https://github.com/buildpacks/pack/releases/download/v0.36.4/pack-v0.36.4-linux.tgz | tar -zx --directory /usr/local/bin pack
- chmod +x /usr/local/bin/pack
- sed --in-place 's|git@\\([^:]*\\):|https://\\1/|g' Gemfile Gemfile.lock
......
......@@ -48,7 +48,6 @@ export const createRailsBuildJobs = (
script: [
...gitlabDockerLogin(context),
`cd ${context.build.dir}`,
`docker pull $DOCKER_CACHE_IMAGE || true`,
`wget --output-document=- https://github.com/buildpacks/pack/releases/download/v${cnbConf?.packVersion}/pack-v${cnbConf?.packVersion}-linux.tgz | tar -zx --directory /usr/local/bin pack`,
`chmod +x /usr/local/bin/pack`,
// replace private git ssh gem sources with https to make bundler with credentials via env var work
......