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