This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch main
in repository eradio.
View the commit online.
commit 8d3cbc11b0d559b2614518b1a2449e356475cead
Author: politebot <[email protected]>
AuthorDate: Thu Oct 9 18:50:27 2025 -0500
Add github workflow for building the project
---
.github/workflows/build.yml | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..f1ee6e0
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,37 @@
+name: Build
+
+on:
+ push:
+ branches: [ main, develop ]
+ pull_request:
+ branches: [ main, develop ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
+
+ - name: Update package lists
+ run: sudo apt-get update
+
+ - name: Install build essentials
+ run: sudo apt-get install -y build-essential
+
+ - name: Install EFL development packages
+ run: |
+ sudo apt-get install -y \
+ libefl-all-dev \
+ libeet-bin \
+ libeina-bin
+
+ - name: Install pkg-config
+ run: sudo apt-get install -y pkg-config
+
+ - name: Check dependencies
+ run: make check-deps
+
+ - name: Build application
+ run: make all
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.