Commit 5622b30d authored by Heinrich Lee Yu's avatar Heinrich Lee Yu

Merge branch 'master' into 'master'

file_metadatum: Add conan_sources.tgz filename

See merge request gitlab-org/gitlab!32664
parents b6e5b84b 92cef36e
......@@ -18,7 +18,7 @@ class Packages::Conan::FileMetadatum < ApplicationRecord
enum conan_file_type: { recipe_file: 1, package_file: 2 }
RECIPE_FILES = %w[conanfile.py conanmanifest.txt].freeze
RECIPE_FILES = %w[conanfile.py conanmanifest.txt conan_sources.tgz].freeze
PACKAGE_FILES = %w[conaninfo.txt conanmanifest.txt conan_package.tgz].freeze
PACKAGE_BINARY = 'conan_package.tgz'
......
---
title: "Fix Conan upload URL for conan_sources.tgz"
merge_request: 32664
author: Zach Hilman
type: fixed
......@@ -419,7 +419,8 @@ describe API::ConanPackages do
let(:params) do
{ "conanfile.py": 24,
"conanmanifext.txt": 123 }
"conanmanifext.txt": 123,
"conan_sources.tgz": 523 }
end
subject { post api("/packages/conan/v1/conans/#{recipe_path}/upload_urls"), params: params, headers: headers }
......@@ -431,7 +432,8 @@ describe API::ConanPackages do
expected_response = {
'conanfile.py': "#{Settings.gitlab.base_url}/api/v4/packages/conan/v1/files/#{package.conan_recipe_path}/0/export/conanfile.py",
'conanmanifest.txt': "#{Settings.gitlab.base_url}/api/v4/packages/conan/v1/files/#{package.conan_recipe_path}/0/export/conanmanifest.txt"
'conanmanifest.txt': "#{Settings.gitlab.base_url}/api/v4/packages/conan/v1/files/#{package.conan_recipe_path}/0/export/conanmanifest.txt",
'conan_sources.tgz': "#{Settings.gitlab.base_url}/api/v4/packages/conan/v1/files/#{package.conan_recipe_path}/0/export/conan_sources.tgz"
}
expect(response.body).to eq(expected_response.to_json)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment