From f3ed4f2aace1ea808b921e2469d0232529f5544b Mon Sep 17 00:00:00 2001 From: ChristophLHR <11349102+ChristophLHR@users.noreply.github.com> Date: Thu, 7 Dec 2023 20:19:12 +0100 Subject: [PATCH] remove old files --- .github/workflows/test.yml.old | 41 ---------------------------------- scm-1.0-0.rockspec | 25 --------------------- 2 files changed, 66 deletions(-) delete mode 100644 .github/workflows/test.yml.old delete mode 100644 scm-1.0-0.rockspec diff --git a/.github/workflows/test.yml.old b/.github/workflows/test.yml.old deleted file mode 100644 index 52d2a6c..0000000 --- a/.github/workflows/test.yml.old +++ /dev/null @@ -1,41 +0,0 @@ -name: test - -on: [push, pull_request] - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: checkout - uses: actions/checkout@v2 - - - name: get lua - uses: leafo/gh-actions-lua@v10 - with: - luaVersion: "5.1" - - - name: get luarocks - uses: leafo/gh-actions-luarocks@v4 - - - name: get busted and luasocket - run: | - luarocks install busted - luarocks install luasocket - sudo apt install lua-socket - - - name: echo stuff - run: | - ls -l /home/runner/work/script-manager/script-manager/.luarocks/share - ls -l /home/runner/work/script-manager/script-manager/.luarocks/lib - ls -l /home/runner/work/script-manager/script-manager/.luarocks/etc - ls -l /home/runner/work/script-manager/script-manager/.luarocks/bin - - - name: fix https - run: | - mkdir -p /home/runner/work/script-manager/script-manager/.luarocks/share/lua/5.1/ssl/ - cat /home/runner/work/script-manager/script-manager/.luarocks/share/lua/5.1/https.lua | echo - ln -s /home/runner/work/script-manager/script-manager/.luarocks/share/lua/5.1/https.lua /home/runner/work/script-manager/script-manager/.luarocks/share/lua/5.1/ssl/https.lua - - - name: run tests - run: | - busted . \ No newline at end of file diff --git a/scm-1.0-0.rockspec b/scm-1.0-0.rockspec deleted file mode 100644 index 2f8aa92..0000000 --- a/scm-1.0-0.rockspec +++ /dev/null @@ -1,25 +0,0 @@ -package = "SCM" -version = "1.0-0" -source = { - url = "..." -- We don't have one yet -} -description = { - summary = "SCM is a script manager for Minecrafts ComputerCraft mod", - detailed = [[ - We are using CC: Tweaked and in some cases some - additional peripherals, which we ideally mention in - the repositories of the scripts that use them. - ]], - homepage = "http://...", -- We don't have one yet - license = "MIT/X11" -- or whatever you like -} -dependencies = { - "lua = 5.1", - "http >= 0.4-0" - -- If you depend on other rocks, add them here -} -build = { - -- We'll start here. - type = "builtin" - -} \ No newline at end of file