From 85d79529bcb11504dab04eae3172886223c73208 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 30 Mar 2026 19:31:34 +0200 Subject: [PATCH 1/4] ci(gh/workflow): testing workflow on forgejo --- .github/workflows/build.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..c90c861 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,25 @@ +name: Build + +on: + push: + branches: + - "**" + pull_request: + branches: + - "**" + +permissions: + contents: read + +jobs: + build: + name: build + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Mandatory + run: TERM=xterm make + - name: Bonus + run: TERM=xterm make bonus -- 2.53.0 From a54b4dc4c7fa8c0f22927d9a2be61e5a6e58d419 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 30 Mar 2026 19:33:21 +0200 Subject: [PATCH 2/4] ci(gh/workflow): adding the default compilator at 42 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c90c861..427cfe1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,6 +20,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Mandatory - run: TERM=xterm make + run: CC=clang TERM=xterm make - name: Bonus - run: TERM=xterm make bonus + run: CC=clang TERM=xterm make bonus -- 2.53.0 From a5bec118173e630bddc28f02bcb285940f1893c9 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 30 Mar 2026 19:37:43 +0200 Subject: [PATCH 3/4] feat(gh/workflow): adding the installation of clang --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 427cfe1..98bd29f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,6 +19,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Install clang + run: apt-get update && apt-get install -y clang - name: Mandatory run: CC=clang TERM=xterm make - name: Bonus -- 2.53.0 From 785d8ea44b38ad92e54d10373ce46f5cc1344308 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 30 Mar 2026 20:40:58 +0200 Subject: [PATCH 4/4] ci(gh/workflow): now running on forty-two env --- .github/workflows/build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 98bd29f..b73d575 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,13 +14,11 @@ permissions: jobs: build: name: build - runs-on: ubuntu-latest + runs-on: forty-two steps: - name: Checkout uses: actions/checkout@v4 - - name: Install clang - run: apt-get update && apt-get install -y clang - name: Mandatory run: CC=clang TERM=xterm make - name: Bonus -- 2.53.0