From 48d70e9f992c1865ca38be4e8e24090b2b3e0a8d Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Wed, 10 Jun 2020 20:08:13 +0200 Subject: [PATCH] Removed the .github directory as the repository is not hosted on GitHub. --- .github/ISSUE_TEMPLATE.md | 7 ------- .github/workflows/ccpp.yml | 22 ---------------------- 2 files changed, 29 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md delete mode 100644 .github/workflows/ccpp.yml diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 8d8bb3a83..000000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,7 +0,0 @@ -Please start a topic on the RetroPie forum before opening an issue - https://retropie.org.uk/forum/ - -This includes edit suggestions for the wiki. There are more people to help on the forum. - -Once a problem has been verified on the forum, an issue can be opened here. - -Please remove this text before posting. diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml deleted file mode 100644 index a020bef06..000000000 --- a/.github/workflows/ccpp.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: C/C++ CI - -on: [push] - -jobs: - build: - - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - with: - submodules: true - - name: configure - run: | - sudo apt-get update - sudo apt-get install libsdl2-dev libfreeimage-dev libfreetype6-dev libcurl4-openssl-dev rapidjson-dev libasound2-dev libgl1-mesa-dev build-essential cmake fonts-droid-fallback libvlc-dev libvlccore-dev vlc-bin - shell: bash - - name: make - run: | - cmake . - make - shell: bash