Commit 3fa3de86 authored by Holger Levsen's avatar Holger Levsen
Browse files

r-b.o/citests: add links to projects being tested externally

parent 1539e08c
Loading
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -117,9 +117,9 @@
- name: NixOS
  url: https://nixos.org/
  logo: nixos.png
  tests: https://r13y.com
  tests_external: true
  resources:
  - name: Continuous tests (external)
    url: https://r13y.com
  - name: "PR#2281: deterministic build"
    url: https://github.com/NixOS/nixpkgs/pull/2281
- name: OpenEmbedded
@@ -128,6 +128,8 @@
- name: openSUSE
  url: https://www.opensuse.org/
  logo: openSUSE.png
  tests: http://rb.zq1.de/compare.factory/
  tests_external: true
  resources:
  - name: openSUSE Reproducible Builds
    url: https://en.opensuse.org/openSUSE:Reproducible_Builds
+26 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ Click the different links to see current tests and results.

<div class="projects row bg-light p-md-5 p-sm-3 pt-5 pb-5">
    {% for project in site.data.projects %}
    {% if project.tests and project.tests_disabled != true %}
    {% if project.tests and project.tests_disabled != true and project.tests_external != true %}
    <div class="col-xs-12 col-sm-6 col-lg-4 col-xl-3 mb-4">
        <div class="card text-center" name="{{ project.name }}">
            <ul class="list-group list-group-flush">
@@ -56,3 +56,28 @@ are disabled as they became unmaintained. Please contact us if you want to reviv
    {% endif %}
    {% endfor %}
</div>

# External tests

<div markdown="1">
The following projects are being tested outside the reproducible test infrastructure.
</div>

<div class="projects row bg-light p-md-5 p-sm-3 pt-5 pb-5">
    {% for project in site.data.projects %}
    {% if project.tests and project.tests_external == true %}
    <div class="col-xs-12 col-sm-6 col-lg-4 col-xl-3 mb-4">
        <div class="card text-center" name="{{ project.name }}">
            <ul class="list-group list-group-flush">
                <li class="list-group-item">
                    <a href="{{ project.tests }}">
                        <h4>{{project.name}}</h4>
                        <img class="card-img p-5" src="{{ project.logo | prepend: "/images/logos/" | prepend: site.baseurl }}">
                    </a>
                </li>
            </ul>
        </div>
    </div>
    {% endif %}
    {% endfor %}
</div>