Skip to content

Commit db2613f

Browse files
committed
Some fixes
1 parent daf6af7 commit db2613f

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

_docs_v7/Container-Development.md

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ title: Containers for Development
33
permalink: /docs_v7/Container-Development/
44
---
55

6+
---
7+
8+
- [Running a container](#running-a-container)
9+
- [Using the scripts to compile SU2](#using-the-scripts-to-compile-su2)
10+
- [Accessing source code and binaries](#accessing-source-code-and-binaries)
11+
- [Compile existing source code](#compile-existing-source-code)
12+
- [Running the Test Cases](#running-the-test-cases)
13+
14+
15+
---
16+
17+
18+
619
A container is a virtual runtime environment that runs on top of a single operating system (OS) kernel and emulates an operating system rather than the underlying hardware (as compared to a virtual machine). It allows you to locally run the same (or almost the same) environment for development, testing and production use.
720

821
We use [Docker](https://www.docker.com/) container during the software development life-cycle for running the regression tests and creating binaries for different operating systems during the release process. The execution of these containers is triggered by events (e.g. by a push to an open pull request) on Github using the [Github Actions](https://github.com/features/actions) feature.

index.html

+13-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,22 @@
22
layout: default
33
---
44

5+
6+
<head>
7+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
8+
<script>
9+
$(document).ready (function () {
10+
$.getJSON("https://api.github.com/repos/su2code/SU2/releases/latest").done(function (data) {
11+
$ ('#current_release_tag').text ("SU2 " + data.tag_name + " Blackbird");
12+
})
13+
})
14+
</script>
15+
</head>
16+
517
<div class="header-container jumbotron">
618
<div class="container"> <!--- style="background-color:white" --->
719
<right>
8-
<h1 style="font-weight:800">SU2 v7 Blackbird</h1> <!-- style="color:black" -->
20+
<h1 style="font-weight:800" id="current_release_tag"></h1> <!-- style="color:black" -->
921
<h2 style="font-weight:700">Powerful. Fast. Free.</h2>
1022
<div class="row" style="display:block; margin: 0 auto">
1123
<p><a class="btn btn-danger btn-lg" href="{{ "/download.html" | prepend: relative_url }}" role="button">

0 commit comments

Comments
 (0)