Просмотр исходного кода

app.py: update config to serve builds for latest releases

Shiv Tyagi 2 лет назад
Родитель
Сommit
187fe531e7
1 измененных файлов с 41 добавлено и 17 удалено
  1. 41 17
      app.py

+ 41 - 17
app.py

@@ -52,40 +52,64 @@ BRANCHES = [
         'artifacts_dir'     : '/latest',
     },
     {
-        'full_name'         : 'upstream/Plane-4.3',
-        'label'             : 'Plane 4.3 beta',
-        'allowed_vehicles'  : [plane],
-        'artifacts_dir'     : '/beta-4.3',
+        'full_name'         : 'upstream/Copter-4.5',
+        'label'             : 'Copter 4.5 beta',
+        'allowed_vehicles'  : [copter, heli],
+        'artifacts_dir'     : '/beta',
     },
     {
-        'full_name'         : 'upstream/Copter-4.3',
-        'label'             : 'Copter 4.3 beta',
-        'allowed_vehicles'  : [copter, heli],
-        'artifacts_dir'     : '/beta-4.3',
+        'full_name'         : 'upstream/Plane-4.5',
+        'label'             : 'Plane 4.5 beta',
+        'allowed_vehicles'  : [plane],
+        'artifacts_dir'     : '/beta',
     },
     {
-        'full_name'         : 'upstream/Rover-4.3',
-        'label'             : 'Rover 4.3 beta',
+        'full_name'         : 'upstream/Rover-4.5',
+        'label'             : 'Rover 4.5 beta',
         'allowed_vehicles'  : [rover],
-        'artifacts_dir'     : '/beta-4.3',
+        'artifacts_dir'     : '/beta',
     },
     {
-        'full_name'         : 'upstream/Copter-4.4',
-        'label'             : 'Copter 4.4 stable',
-        'allowed_vehicles'  : [copter, heli],
-        'artifacts_dir'     : '/stable',
+        'full_name'         : 'upstream/Sub-4.5',
+        'label'             : 'Sub 4.5 beta',
+        'allowed_vehicles'  : [sub],
+        'artifacts_dir'     : '/beta',
     },
     {
         'full_name'         : 'upstream/Plane-4.4',
         'label'             : 'Plane 4.4 stable',
         'allowed_vehicles'  : [plane],
-        'artifacts_dir'     : '/stable',
+        'artifacts_dir'     : '/stable-4.4.4',
+    },
+    {
+        'full_name'         : 'upstream/Copter-4.4',
+        'label'             : 'Copter 4.4 stable',
+        'allowed_vehicles'  : [copter, heli],
+        'artifacts_dir'     : '/stable-4.4.4',
     },
     {
         'full_name'         : 'upstream/Rover-4.4',
         'label'             : 'Rover 4.4 stable',
         'allowed_vehicles'  : [rover],
-        'artifacts_dir'     : '/stable',
+        'artifacts_dir'     : '/stable-4.4.4',
+    },
+    {
+        'full_name'         : 'upstream/Plane-4.3',
+        'label'             : 'Plane 4.3 stable',
+        'allowed_vehicles'  : [plane],
+        'artifacts_dir'     : '/stable-4.3.8',
+    },
+    {
+        'full_name'         : 'upstream/Copter-4.3',
+        'label'             : 'Copter 4.3 stable',
+        'allowed_vehicles'  : [copter, heli],
+        'artifacts_dir'     : '/stable-4.3.8',
+    },
+    {
+        'full_name'         : 'upstream/Rover-4.3',
+        'label'             : 'Rover 4.3 stable',
+        'allowed_vehicles'  : [rover],
+        'artifacts_dir'     : '/stable-4.3.8',
     },
 ]
 default_branch = BRANCHES[0]