From e870cd1dc2bf542afae6a3e6a87073b413bc94a2 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Wed, 19 Jun 2024 17:34:05 +0300 Subject: [PATCH] Remove client and docs workflows. --- .github/workflows/client-ci.yml | 60 ---------------------- .github/workflows/docs.yml | 90 --------------------------------- 2 files changed, 150 deletions(-) delete mode 100644 .github/workflows/client-ci.yml delete mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/client-ci.yml b/.github/workflows/client-ci.yml deleted file mode 100644 index 78bd446..0000000 --- a/.github/workflows/client-ci.yml +++ /dev/null @@ -1,60 +0,0 @@ -{ - "name": "CLIENT-CI", - "on": { - "push": { - "branches": [ - "master" - ] - }, - "pull_request": null, - "schedule": [ - { - "cron": "0 10 * * 1" - } - ] - }, - "jobs": { - "linter": { - "runs-on": "ubuntu-latest", - "env": { - "OS": "ubuntu-latest", - "QUICKLISP_DIST": "quicklisp", - "LISP": "sbcl-bin" - }, - "steps": [ - { - "name": "Checkout Code", - "uses": "actions/checkout@v4" - }, - { - "name": "Setup Common Lisp Environment", - "uses": "40ants/setup-lisp@v4", - "with": { - "asdf-system": "openrpc-client", - "cache": "true" - } - }, - { - "name": "Change dist to Ultralisp if qlfile does not exist", - "run": "if [[ ! -e qlfile ]]; then echo 'dist ultralisp http://dist.ultralisp.org' > qlfile; fi", - "shell": "bash" - }, - { - "name": "Update Qlot", - "run": "qlot update --no-deps", - "shell": "bash" - }, - { - "name": "Install SBLint wrapper", - "run": "qlot exec ros install 40ants-asdf-system 40ants-linter", - "shell": "bash" - }, - { - "name": "Run Linter", - "run": "qlot exec 40ants-linter --system \"openrpc-client\" --imports", - "shell": "bash" - } - ] - } - } -} \ No newline at end of file diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml deleted file mode 100644 index d0033c9..0000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,90 +0,0 @@ -{ - "name": "DOCS", - "on": { - "push": { - "branches": [ - "master" - ] - }, - "pull_request": null, - "schedule": [ - { - "cron": "0 10 * * 1" - } - ] - }, - "jobs": { - "linter": { - "runs-on": "ubuntu-latest", - "env": { - "OS": "ubuntu-latest", - "QUICKLISP_DIST": "quicklisp", - "LISP": "sbcl-bin" - }, - "steps": [ - { - "name": "Checkout Code", - "uses": "actions/checkout@v4" - }, - { - "name": "Setup Common Lisp Environment", - "uses": "40ants/setup-lisp@v4", - "with": { - "asdf-system": "openrpc-docs", - "cache": "false" - } - }, - { - "name": "Change dist to Ultralisp if qlfile does not exist", - "run": "if [[ ! -e qlfile ]]; then echo 'dist ultralisp http://dist.ultralisp.org' > qlfile; fi", - "shell": "bash" - }, - { - "name": "Update Qlot", - "run": "qlot update --no-deps", - "shell": "bash" - }, - { - "name": "Install SBLint wrapper", - "run": "qlot exec ros install 40ants-asdf-system 40ants-linter", - "shell": "bash" - }, - { - "name": "Run Linter", - "run": "qlot exec 40ants-linter --system \"openrpc-docs\" --imports", - "shell": "bash" - } - ] - }, - "build-docs": { - "runs-on": "ubuntu-latest", - "env": { - "OS": "ubuntu-latest", - "QUICKLISP_DIST": "quicklisp", - "LISP": "sbcl-bin" - }, - "steps": [ - { - "name": "Checkout Code", - "uses": "actions/checkout@v4" - }, - { - "name": "Setup Common Lisp Environment", - "uses": "40ants/setup-lisp@v4", - "with": { - "asdf-system": "openrpc-docs", - "cache": "false" - } - }, - { - "name": "Build Docs", - "uses": "40ants/build-docs@v1", - "with": { - "asdf-system": "openrpc-docs", - "error-on-warnings": true - } - } - ] - } - } -} \ No newline at end of file