From 095d14ce3cb0a2e93cc5248c9d084eebb7d2165d Mon Sep 17 00:00:00 2001 From: Blaine Motsinger Date: Sat, 13 Nov 2021 19:12:15 -0600 Subject: [PATCH 1/3] Remove travis build manifest --- .travis.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9f67ef0..0000000 --- a/.travis.yml +++ /dev/null @@ -1,23 +0,0 @@ -# Use python as its the simplest language which can run a test script -language: python - -before_install: - # Print out the bash version - - sudo /bin/bash --version - # Update Package Lists - - sudo apt-get -qq update - # Install dependencies - - sudo apt-get install -y shunit2 - # Remove this troublesome script - - sudo rm -f /etc/profile.d/phpenv.sh - -# Create a minecraft user for testing -install: - - sudo adduser --system minecraft - -# Run the test script -script: sudo /bin/bash ./test.sh - -branches: - only: - - master From 551e191b6a3f80c11335facbf179c38af3bd40e2 Mon Sep 17 00:00:00 2001 From: Blaine Motsinger Date: Sat, 13 Nov 2021 20:32:28 -0600 Subject: [PATCH 2/3] Add GitHub Action manifest for testing --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..7cd097b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: Run tests +on: + push: + branches-ignore: + - 'gh-pages' + pull_request: + branches-ignore: + - 'gh-pages' + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Install dependencies + run: sudo apt-get install shunit2 + - name: Check out branch + uses: actions/checkout@v2 + - name: Create the minecraft user + run: sudo adduser --system minecraft + - name: Run tests + run: sudo /bin/bash ./test.sh From 86544fbfb97b1a12ad0165344d0dee0aca4f7bc5 Mon Sep 17 00:00:00 2001 From: Blaine Motsinger Date: Sat, 13 Nov 2021 20:40:11 -0600 Subject: [PATCH 3/3] Remove travis build link from README Additionally remove another donate link. --- README.markdown | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.markdown b/README.markdown index 2527a2b..f3a8818 100644 --- a/README.markdown +++ b/README.markdown @@ -1,9 +1,4 @@ -# Minecraft Server Manager [![Build Status][status-img]][status] [![Donate to MSM][donate-img]][donate] - -[status-img]: https://api.travis-ci.org/msmhq/msm.svg?branch=master -[status]: http://travis-ci.org/msmhq/msm -[donate-img]: https://www.paypalobjects.com/en_GB/i/btn/btn_donate_SM.gif -[donate]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Z7XQDNF7U5GLL +# Minecraft Server Manager A single init script which makes running multiple Minecraft/Bukkit servers easier for us admins.