Skip to content

Latest commit

 

History

History
55 lines (49 loc) · 1.11 KB

machines.md

File metadata and controls

55 lines (49 loc) · 1.11 KB
title
Machines
{% for item in site.machines %} {% if item.pool == nil %} {% endif %} {% endfor %}
Machine Model OS Threads Location Notes
{{item.name}} {{item.manufacturer}} {{item.model}} {{item.os}} {{item.threads}} {{item.location}} {{item.notes}}

{% assign pools = "linux-x86_64,linux-ppc64,linux-arm64,windows-x86_64,linux-s390x,linux-riscv64,macos-x86_64,macos-arm64" | split: ',' %} {% for pool in pools %}

Worker Pool {{pool}}

{% for item in site.machines %} {% if item.pool == pool %} {% endif %} {% endfor %}
Machine Model OS Threads Location
{{item.name}} {{item.manufacturer}} {{item.model}} {{item.os}} {{item.threads}} {{item.location}}

{% endfor %}