BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
1859b106
Commit
1859b106
authored
Dec 14, 2015
by
Kamil Trzciński
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix-ci-project-migration' into 'master'
Fix CI project migration and 500 on runners page See merge request !2093
parents
208f99ff
cb4b4c57
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
show.html.haml
app/views/admin/runners/show.html.haml
+1
-1
_runner.html.haml
app/views/projects/runners/_runner.html.haml
+1
-1
20151210125930_migrate_ci_to_project.rb
db/migrate/20151210125930_migrate_ci_to_project.rb
+3
-3
No files found.
app/views/admin/runners/show.html.haml
View file @
1859b106
...
...
@@ -60,7 +60,7 @@
=
project
.
name_with_namespace
%td
.pull-right
=
link_to
'Disable'
,
[
:admin
,
project
.
namespace
,
project
,
runner_project
],
method: :delete
,
class:
'btn btn-danger btn-xs'
=
link_to
'Disable'
,
[
:admin
,
project
.
namespace
.
becomes
(
Namespace
)
,
project
,
runner_project
],
method: :delete
,
class:
'btn btn-danger btn-xs'
%table
.table
%thead
...
...
app/views/projects/runners/_runner.html.haml
View file @
1859b106
...
...
@@ -18,7 +18,7 @@
-
runner_project
=
@project
.
runner_projects
.
find_by
(
runner_id:
runner
)
=
link_to
'Disable for this project'
,
namespace_project_runner_project_path
(
@project
.
namespace
,
@project
,
runner_project
),
data:
{
confirm:
"Are you sure?"
},
method: :delete
,
class:
'btn btn-danger btn-sm'
-
elsif
runner
.
specific?
=
form_for
[
@project
.
namespace
,
@project
,
@project
.
runner_projects
.
new
]
do
|
f
|
=
form_for
[
@project
.
namespace
.
becomes
(
Namespace
)
,
@project
,
@project
.
runner_projects
.
new
]
do
|
f
|
=
f
.
hidden_field
:runner_id
,
value:
runner
.
id
=
f
.
submit
'Enable for this project'
,
class:
'btn btn-sm'
.pull-right
...
...
db/migrate/20151210125930_migrate_ci_to_project.rb
View file @
1859b106
...
...
@@ -27,11 +27,11 @@ class MigrateCiToProject < ActiveRecord::Migration
def
migrate_project_column
(
column
,
new_column
=
nil
)
new_column
||=
column
subquery
=
"SELECT ci_projects.
#{
column
}
FROM ci_projects WHERE projects.id = ci_projects.gitlab_id"
execute
(
"UPDATE projects SET
#{
new_column
}
=(
#{
subquery
}
) WHERE
#{
new_column
}
IS NULL AND
(
#{
subquery
}
) IS NOT NULL"
)
execute
(
"UPDATE projects SET
#{
new_column
}
=(
#{
subquery
}
) WHERE (
#{
subquery
}
) IS NOT NULL"
)
end
def
migrate_ci_service
subquery
=
"SELECT active FROM services WHERE projects.id = services.project_id AND type='GitlabCiService'"
execute
(
"UPDATE projects SET builds_enabled=(
#{
subquery
}
) WHERE
builds_enabled IS NULL AND
(
#{
subquery
}
) IS NOT NULL"
)
subquery
=
"SELECT active FROM services WHERE projects.id = services.project_id AND type='GitlabCiService'
LIMIT 1
"
execute
(
"UPDATE projects SET builds_enabled=(
#{
subquery
}
) WHERE (
#{
subquery
}
) IS NOT NULL"
)
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment