summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/list_missing.yml21
-rw-r--r--.github/workflows/test_all.yml14
-rw-r--r--.github/workflows/test_datastructures.yml22
-rw-r--r--.github/workflows/test_geometry.yml22
-rw-r--r--.github/workflows/test_graph.yml22
-rw-r--r--.github/workflows/test_math.yml22
-rw-r--r--.github/workflows/test_other.yml22
-rw-r--r--.github/workflows/test_pdf.yml39
-rw-r--r--.github/workflows/test_string.yml22
-rw-r--r--.github/workflows/test_template.yml22
10 files changed, 0 insertions, 228 deletions
diff --git a/.github/workflows/list_missing.yml b/.github/workflows/list_missing.yml
deleted file mode 100644
index 0ed7e01..0000000
--- a/.github/workflows/list_missing.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-on: [push, pull_request]
-
-jobs:
- missing:
- name: List missing
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - run: ./test/test.sh --missing
- - run: ./test/test.sh --coverage >> $GITHUB_ENV
- - uses: schneegans/dynamic-badges-action@v1.7.0
- with:
- auth: ${{ secrets.GIST_COVERAGE_SECRET }}
- gistID: 73fb3c58350c58b623f221fc237def62
- filename: tcr_coverage.json
- label: coverage
- message: ${{ env.COVERED }}/${{ env.TOTAL }}
- namedLogo: GitHub
- valColorRange: ${{ env.TOTAL }}
- minColorRange: ${{ env.REQUIRED }}
- maxColorRange: ${{ env.TOTAL }}
diff --git a/.github/workflows/test_all.yml b/.github/workflows/test_all.yml
deleted file mode 100644
index bb2489b..0000000
--- a/.github/workflows/test_all.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-on:
- workflow_dispatch:
-
-jobs:
- all:
- strategy:
- matrix:
- os: [ubuntu-latest, ubuntu-22.04]
- name: Test all (${{ matrix.os }})
- runs-on: ${{ matrix.os }}
- timeout-minutes: 20
- steps:
- - uses: actions/checkout@v4
- - run: ./test/test.sh
diff --git a/.github/workflows/test_datastructures.yml b/.github/workflows/test_datastructures.yml
deleted file mode 100644
index dffcf0a..0000000
--- a/.github/workflows/test_datastructures.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-on:
- push:
- paths:
- - 'content/datastructures/**'
- - 'test/datastructures/**'
- pull_request:
- paths:
- - 'content/datastructures/**'
- - 'test/datastructures/**'
- workflow_dispatch:
-
-jobs:
- datastructures:
- strategy:
- matrix:
- os: [ubuntu-latest, ubuntu-22.04]
- name: Test datastructures (${{ matrix.os }})
- runs-on: ${{ matrix.os }}
- timeout-minutes: 10
- steps:
- - uses: actions/checkout@v4
- - run: ./test/test.sh datastructures
diff --git a/.github/workflows/test_geometry.yml b/.github/workflows/test_geometry.yml
deleted file mode 100644
index fc45e5c..0000000
--- a/.github/workflows/test_geometry.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-on:
- push:
- paths:
- - 'content/geometry/**'
- - 'test/geometry/**'
- pull_request:
- paths:
- - 'content/geometry/**'
- - 'test/geometry/**'
- workflow_dispatch:
-
-jobs:
- geometry:
- strategy:
- matrix:
- os: [ubuntu-latest, ubuntu-22.04]
- name: Test geometry (${{ matrix.os }})
- runs-on: ${{ matrix.os }}
- timeout-minutes: 10
- steps:
- - uses: actions/checkout@v4
- - run: ./test/test.sh geometry
diff --git a/.github/workflows/test_graph.yml b/.github/workflows/test_graph.yml
deleted file mode 100644
index 505707c..0000000
--- a/.github/workflows/test_graph.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-on:
- push:
- paths:
- - 'content/graph/**'
- - 'test/graph/**'
- pull_request:
- paths:
- - 'content/graph/**'
- - 'test/graph/**'
- workflow_dispatch:
-
-jobs:
- graph:
- strategy:
- matrix:
- os: [ubuntu-latest, ubuntu-22.04]
- name: Test graph (${{ matrix.os }})
- runs-on: ${{ matrix.os }}
- timeout-minutes: 10
- steps:
- - uses: actions/checkout@v4
- - run: ./test/test.sh graph
diff --git a/.github/workflows/test_math.yml b/.github/workflows/test_math.yml
deleted file mode 100644
index ef759c0..0000000
--- a/.github/workflows/test_math.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-on:
- push:
- paths:
- - 'content/math/**'
- - 'test/math/**'
- pull_request:
- paths:
- - 'content/math/**'
- - 'test/math/**'
- workflow_dispatch:
-
-jobs:
- math:
- strategy:
- matrix:
- os: [ubuntu-latest, ubuntu-22.04]
- name: Test math (${{ matrix.os }})
- runs-on: ${{ matrix.os }}
- timeout-minutes: 10
- steps:
- - uses: actions/checkout@v4
- - run: ./test/test.sh math
diff --git a/.github/workflows/test_other.yml b/.github/workflows/test_other.yml
deleted file mode 100644
index 14c0550..0000000
--- a/.github/workflows/test_other.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-on:
- push:
- paths:
- - 'content/other/**'
- - 'test/other/**'
- pull_request:
- paths:
- - 'content/other/**'
- - 'test/other/**'
- workflow_dispatch:
-
-jobs:
- other:
- strategy:
- matrix:
- os: [ubuntu-latest, ubuntu-22.04]
- name: Test other (${{ matrix.os }})
- runs-on: ${{ matrix.os }}
- timeout-minutes: 10
- steps:
- - uses: actions/checkout@v4
- - run: ./test/test.sh other
diff --git a/.github/workflows/test_pdf.yml b/.github/workflows/test_pdf.yml
deleted file mode 100644
index ab273f7..0000000
--- a/.github/workflows/test_pdf.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-on:
- push:
- paths:
- - 'content/**'
- - 'Makefile'
- pull_request:
- paths:
- - 'content/**'
- - 'Makefile'
- workflow_dispatch:
-
-jobs:
- pdf_22-04:
- name: Test pdf (ubuntu-22.04)
- runs-on: ubuntu-22.04
- timeout-minutes: 5
- steps:
- - uses: actions/checkout@v4
- - run: |
- sudo apt-get update
- sudo apt-get install latexmk texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-lang-german texlive-fonts-extra
- - run: make
-
- pdf_latest:
- name: Test pdf (ubuntu-latest)
- runs-on: ubuntu-22.04
- timeout-minutes: 5
- steps:
- - uses: actions/checkout@v4
- - run: |
- sudo apt-get update
- sudo apt-get install latexmk texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-lang-german texlive-fonts-extra
- - run: make
- - uses: exuanbo/actions-deploy-gist@v1
- with:
- token: ${{ secrets.GIST_COVERAGE_SECRET }}
- gist_id: 73fb3c58350c58b623f221fc237def62
- file_path: tcr.pdf
- file_type: binary
diff --git a/.github/workflows/test_string.yml b/.github/workflows/test_string.yml
deleted file mode 100644
index 0d79040..0000000
--- a/.github/workflows/test_string.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-on:
- push:
- paths:
- - 'content/string/**'
- - 'test/string/**'
- pull_request:
- paths:
- - 'content/string/**'
- - 'test/string/**'
- workflow_dispatch:
-
-jobs:
- string:
- strategy:
- matrix:
- os: [ubuntu-latest, ubuntu-22.04]
- name: Test string (${{ matrix.os }})
- runs-on: ${{ matrix.os }}
- timeout-minutes: 10
- steps:
- - uses: actions/checkout@v4
- - run: ./test/test.sh string
diff --git a/.github/workflows/test_template.yml b/.github/workflows/test_template.yml
deleted file mode 100644
index 01f57bb..0000000
--- a/.github/workflows/test_template.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-on:
- push:
- paths:
- - 'content/template/**'
- - 'test/template/**'
- pull_request:
- paths:
- - 'content/template/**'
- - 'test/template/**'
- workflow_dispatch:
-
-jobs:
- template:
- strategy:
- matrix:
- os: [ubuntu-latest, ubuntu-22.04]
- name: Test template (${{ matrix.os }})
- runs-on: ${{ matrix.os }}
- timeout-minutes: 10
- steps:
- - uses: actions/checkout@v4
- - run: ./test/test.sh template