Skip to content

Commit

Permalink
Some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
talbring committed Jan 31, 2020
1 parent daf6af7 commit db2613f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
13 changes: 13 additions & 0 deletions _docs_v7/Container-Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@ title: Containers for Development
permalink: /docs_v7/Container-Development/
---

---

- [Running a container](#running-a-container)
- [Using the scripts to compile SU2](#using-the-scripts-to-compile-su2)
- [Accessing source code and binaries](#accessing-source-code-and-binaries)
- [Compile existing source code](#compile-existing-source-code)
- [Running the Test Cases](#running-the-test-cases)


---



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.

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.
Expand Down
14 changes: 13 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,22 @@
layout: default
---


<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
$(document).ready (function () {
$.getJSON("https://api.github.com/repos/su2code/SU2/releases/latest").done(function (data) {
$ ('#current_release_tag').text ("SU2 " + data.tag_name + " Blackbird");
})
})
</script>
</head>

<div class="header-container jumbotron">
<div class="container"> <!--- style="background-color:white" --->
<right>
<h1 style="font-weight:800">SU2 v7 Blackbird</h1> <!-- style="color:black" -->
<h1 style="font-weight:800" id="current_release_tag"></h1> <!-- style="color:black" -->
<h2 style="font-weight:700">Powerful. Fast. Free.</h2>
<div class="row" style="display:block; margin: 0 auto">
<p><a class="btn btn-danger btn-lg" href="{{ "/download.html" | prepend: relative_url }}" role="button">
Expand Down

0 comments on commit db2613f

Please sign in to comment.