summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/ci_src_examples_linux.yml
diff options
context:
space:
mode:
authorRay <[email protected]>2020-08-17 21:02:56 +0200
committerGitHub <[email protected]>2020-08-17 21:02:56 +0200
commitceea5cb99b079c91f482090bb37e59533bf35e68 (patch)
treed7c017157cfd60b9b04f9ad89e837a75cd4051af /.github/workflows/ci_src_examples_linux.yml
parent62302b1f71d9f2ae266b7b1761078c458fcfaeac (diff)
downloadraylib-ceea5cb99b079c91f482090bb37e59533bf35e68.tar.gz
raylib-ceea5cb99b079c91f482090bb37e59533bf35e68.zip
Update and rename ci_src_examples_linux.yml to linux.yml
Diffstat (limited to '.github/workflows/ci_src_examples_linux.yml')
-rw-r--r--.github/workflows/ci_src_examples_linux.yml18
1 files changed, 0 insertions, 18 deletions
diff --git a/.github/workflows/ci_src_examples_linux.yml b/.github/workflows/ci_src_examples_linux.yml
deleted file mode 100644
index e86f27b2..00000000
--- a/.github/workflows/ci_src_examples_linux.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-name: CI - Source & Examples - Linux
-
-on: [push, pull_request]
-
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@master
- - name: apt-update
- run: sudo apt-get update -qq
- - name: apt get glfw
- run: sudo apt-get install -y --no-install-recommends libglfw3 libglfw3-dev libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libxext-dev libxfixes-dev
- - name: make src
- run: cd src && make PLATFORM=PLATFORM_DESKTOP
- - name: make examples
- run: cd examples && make PLATFORM=PLATFORM_DESKTOP