removed the test from github action 'release'

master
Martin Scheidt 2022-02-13 20:31:23 +01:00
parent f0772c5742
commit 6dc00facc4
1 changed files with 0 additions and 29 deletions

View File

@ -14,36 +14,7 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
name: "test"
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- name: "checkout"
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
uses: actions/checkout@v2
- name: "change ImageMagick policy to allow pdf->png conversion"
run: sudo sed -i 's/^.*policy.*coder.*none.*PDF.*//' /etc/ImageMagick-6/policy.xml
- name: "install ghostscript"
run: sudo apt-get install -y ghostscript
- name: "setup TeX Live (via paolobrasolin)"
uses: paolobrasolin/setup-texlive-action@v1
with:
profile-path: ${{ github.workspace }}/.github/tex/minimal.profile.txt
packages-path: ${{ github.workspace }}/.github/tex/test.packages.txt
- name: "install tikz-trackschematic"
run: chmod +x dev-install.sh && ./dev-install.sh -b
- name: "test tikz-trackschematic"
run: cd test && chmod +x testing.sh && ./testing.sh
release:
needs: test
name: "make release"
# The type of runner that the job will run on
runs-on: ubuntu-latest