From 5097f314f2718d9a6aefda13e16593f41f22ea1e Mon Sep 17 00:00:00 2001 From: Rokas Puzonas Date: Thu, 20 Jul 2023 03:17:53 +0300 Subject: [PATCH] remove github workflows --- .github/workflows/macOS.yml | 31 --------------------------- .github/workflows/ubuntu.yml | 35 ------------------------------ .github/workflows/windows.yml | 40 ----------------------------------- 3 files changed, 106 deletions(-) delete mode 100644 .github/workflows/macOS.yml delete mode 100644 .github/workflows/ubuntu.yml delete mode 100644 .github/workflows/windows.yml diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml deleted file mode 100644 index 23af765..0000000 --- a/.github/workflows/macOS.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: macOS - -on: - push: - branches: [ main ] - - pull_request: - branches: [ main ] - -jobs: - build: - runs-on: macos-latest - steps: - - uses: actions/checkout@v2 - - name: make setup - run: make setup - - - name: make bin/app - run: make bin/app - - name: 'export binary' - uses: actions/upload-artifact@v2 - with: - name: app - path: bin/app - - name: make clean - run: make clean - - - name: make bin/app CXX=g++ - run: make bin/app CXX=g++ - - name: make clean - run: make clean diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml deleted file mode 100644 index cf6ae1a..0000000 --- a/.github/workflows/ubuntu.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Ubuntu - -on: - push: - branches: [ main ] - - pull_request: - branches: [ main ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: update apt - run: sudo apt-get update - - name: install raylib dependencies - run: sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev - - name: make setup - run: make setup - - - name: make bin/app - run: make bin/app - - name: 'export binary' - uses: actions/upload-artifact@v2 - with: - name: app - path: bin/app - - name: make clean - run: make clean - - - name: make bin/app CXX=g++ - run: make bin/app CXX=g++ - - name: make clean - run: make clean diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml deleted file mode 100644 index 7302c18..0000000 --- a/.github/workflows/windows.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Windows - -on: - push: - branches: [ main ] - - pull_request: - branches: [ main ] - -jobs: - build: - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - - name: make setup - run: mingw32-make setup - shell: cmd - - - name: make bin/app - run: mingw32-make bin/app - shell: cmd - - - name: 'export binary' - uses: actions/upload-artifact@v2 - with: - name: app.exe - path: bin/app.exe - - - name: make clean - run: mingw32-make clean - shell: cmd - - - name: make bin/app CXX=g++ - run: mingw32-make bin/app CXX=g++ - shell: cmd - - - name: make clean - run: mingw32-make clean - shell: cmd