Skip to content
Snippets Groups Projects
Commit f7919421 authored by Georges Racinet's avatar Georges Racinet
Browse files

Merged heptapod-stable branch into heptapod

Ironically, this finally adds a tag to the Heptapod 0.35 series,
and we have to fix the `latest_tag` example in `info_spec.rb`.
Hopefully this will be the last time…
parents 01baf50c 368d85de
No related branches found
No related tags found
1 merge request!99Merged heptapod-stable branch into heptapod
Pipeline #71258 failed
......@@ -142,6 +142,7 @@
907faed9142da14f971a3cd5bdf6102e4be8e2d7 heptapod-0.34.0-2
175da1b0631af1dcde5dd4ccdf12840e0de99a21 heptapod-0.35.0rc1-1
9777d10bc25e40b428708579098e67a01f071996 heptapod-0.35.0-1
855d7496a3b3dee2d0f7d3921cba2cdb643ba15d heptapod-0.35.1-1
41c7d6f73a51edcdf999c3244242502a154f73c6 heptapod-0.36.0rc1-1
a99dff9b095fa3b71d94e62ca41ca568674c01df heptapod-0.36.0-1
257b71e4184810a04e407d6793b3ce2e2b600e7a heptapod-0.36.1-1
......@@ -156,4 +157,5 @@
75d8728cf8facea30ebfb462d01a3acd5301ccf6 heptapod-0.37.9.pre-1
8f42c6d1cc4c52f6f45bd9583db84fb9290448af heptapod-0.37.10.pre-1
f93262c4980e394f299f56019c4815f3db9b0d28 heptapod-0.38.0.pre-1
3362769fff82a57fae318e1b9aabf48736856a29 heptapod-0.38.0rc1-1
f31074fe2c61bfa2b2c38d30f3c8bebc6a567eea heptapod-0.39.0.pre-1
2b87491c76c4777b9ad97628fbb13398aecb34d85f303cf8ef2df8bf8111f291
71564f82c6f0d851d6ce5b89e485a69f8e941f9fdfe5870c9eb406cb0c4590c2
0.38.0
0.39.0
b85f98d3c2e882b6d2767316394eb7f3df470ca63260fb8981d5294d81d8cc9b
9fcb7f91ce06632ac1fbf5d13c69f0d709907e8ce7138377489e9613c8c658e7
......@@ -175,6 +175,7 @@
dependency 'gitlab-rails'
dependency 'gitaly'
dependency 'rhgitaly'
dependency 'tokei'
dependency 'ruby-grpc' if Build::Check.use_system_ssl?
# Package scripts
......
# Copyright:: Copyright (c) 2023 Georges Racinet <georges.racinet@octobus.net>
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require "#{Omnibus::Config.project_root}/lib/gitlab/version"
software_name = 'tokei'
version = "12.1.2"
name software_name
default_version version
license 'Apache-2.0'
# no `source` directive, hence using the NullFetcher (see comment in
# gitlab-shell.rb)
embedded_lib = "#{install_dir}/embedded/lib"
# See long comment in rhgitaly.rb
env = {
'LD_RUN_PATH' => embedded_lib,
'RUSTFLAGS' => "-L native=#{embedded_lib}"
}
build do
# cargo will create the bin/ subdirectory if needed
command "cargo install --root #{install_dir}/embedded --version #{version} #{software_name}", env: env
end
......@@ -17,6 +17,8 @@
gitlab_user = account_helper.gitlab_user
gitlab_group = account_helper.gitlab_group
install_dir = node['package']['install-dir']
gitlab_rails_node = node['gitlab']['gitlab-rails']
mercurial_node = node['gitlab']['mercurial']
......@@ -54,6 +56,7 @@
mode "0640"
variables({repositories_root: hg_storages.values.first['path'],
py_heptapod_hgrc: File.join(py_heptapod_path, 'required.hgrc'),
tokei_exe: File.join(install_dir, 'embedded', 'bin', 'tokei'),
internal_api_secret_file: File.join(gitlab_rails_etc_dir,
"gitlab_shell_secret"),
internal_url: gitlab_rails_internal_url,
......
......@@ -9,8 +9,11 @@
gitlab-internal-api-secret-file = <%= @internal_api_secret_file %>
gitlab-internal-api-url = <%= @internal_url %>
[hgitaly]
tokei-executable = <%= @tokei_exe %>
[logging]
# see https://foss.heptapod.net/heptapod/hgext-loggingmod/blob/branch/default/README.md
level = <%= @log_level %>
file = <%= @log_file %>
config.json = <%= @config_json_file %>
......@@ -12,6 +15,5 @@
[logging]
# see https://foss.heptapod.net/heptapod/hgext-loggingmod/blob/branch/default/README.md
level = <%= @log_level %>
file = <%= @log_file %>
config.json = <%= @config_json_file %>
......@@ -176,7 +176,20 @@
project: heptapod/heptapod-tests
strategy: depend
heptapod-tests-release:
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: never
- if: '$HEPTAPOD_TESTS_BRANCH'
when: never
- if: '$CI_COMMIT_HG_BRANCH =~ /^heptapod-\d+-\d+$/'
when: always
extends:
- .heptapod-tests
trigger:
branch: branch/$CI_COMMIT_HG_BRANCH
heptapod-tests-specific:
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: never
......@@ -179,8 +192,8 @@
heptapod-tests-specific:
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: never
- if: '$HEPTAPOD_TESTS_BRANCH'
- if: '$HEPTAPOD_TESTS_BRANCH && $HEPTAPOD_TESTS_BRANCH != "omnibus-default"'
when: always
extends:
- .heptapod-tests
......@@ -191,7 +204,7 @@
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: never
- if: '$HEPTAPOD_TESTS_BRANCH'
- if: '$HEPTAPOD_TESTS_BRANCH && $HEPTAPOD_TESTS_BRANCH != "omnibus-default"'
when: never
- if: '$CI_COMMIT_HG_BRANCH == "heptapod"'
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "branch/heptapod"'
......@@ -204,7 +217,7 @@
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: never
- if: '$HEPTAPOD_TESTS_BRANCH'
- if: '$HEPTAPOD_TESTS_BRANCH && $HEPTAPOD_TESTS_BRANCH != "omnibus-default"'
when: never
- if: '$CI_COMMIT_HG_BRANCH == "heptapod-stable"'
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "branch/heptapod-stable"'
......@@ -217,7 +230,7 @@
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: never
- if: '$HEPTAPOD_TESTS_BRANCH'
- if: '$HEPTAPOD_TESTS_BRANCH && $HEPTAPOD_TESTS_BRANCH != "omnibus-default"'
when: never
- if: '$CI_COMMIT_HG_BRANCH == "heptapod-oldstable"'
- if: '$CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "branch/heptapod-oldstable"'
......
......@@ -43,7 +43,10 @@
"gitlab-internal-api-secret-file = #{rails_conf_dir}/gitlab_shell_secret",
"gitlab-internal-api-url = http://localhost:8080",
"",
"[hgitaly]",
"tokei-executable = /opt/gitlab/embedded/bin/tokei",
"",
"[logging]",
"level = info",
"file = #{hg_log_path}",
"config.json = #{mercurial_conf_dir}/hg-logging.json",
......@@ -46,8 +49,7 @@
"[logging]",
"level = info",
"file = #{hg_log_path}",
"config.json = #{mercurial_conf_dir}/hg-logging.json",
""
])
}
expect(chef_run).to render_file("#{mercurial_conf_dir}/hg-logging.json").with_content { |content|
......
......@@ -78,7 +78,7 @@
end
it 'calls the shell command with correct arguments' do
expect(described_class.latest_tag).to eq('heptapod-0.35.0-1')
expect(described_class.latest_tag).to eq('heptapod-0.35.1-1')
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment