Compare commits

15 Commits
v1.0 ... main

Author SHA1 Message Date
914f266650 Update .gitea/workflows/cache.yml
Signed-off-by: enderice2 <enderice2@protonmail.com>
2025-01-28 14:35:54 +02:00
1009851d64 Update .gitea/workflows/cache.yml
Signed-off-by: enderice2 <enderice2@protonmail.com>
2025-01-28 13:34:27 +02:00
d8126682bf modified: cache.yml 2025-01-28 12:52:10 +02:00
49906f445e gyatt
Signed-off-by: enderice2 <enderice2@protonmail.com>
2025-01-28 12:48:04 +02:00
5936b0217a Update .gitea/workflows/cpp.yml
Signed-off-by: enderice2 <enderice2@protonmail.com>
2024-12-29 23:29:17 +02:00
123b9ace8f Update .gitea/workflows/test.yml
Signed-off-by: enderice2 <enderice2@protonmail.com>
2024-12-29 23:28:41 +02:00
bcafedf011 Add gyatt
Signed-off-by: enderice2 <enderice2@protonmail.com>
2024-12-29 23:01:22 +02:00
16fadd37e9 Add .gitea/workflows/demo.yaml
Signed-off-by: enderice2 <enderice2@no-reply@git.enderice2.com>
2024-12-29 22:52:27 +02:00
enderice2
37223045c9 Update ci 2024-09-07 03:18:35 +03:00
enderice2
a14f86dbdd Update .gitea/workflows/cpp.yml
Signed-off-by: enderice2 <enderice2@no-reply@enderice2.com>
2024-08-25 16:42:10 +03:00
enderice2
d581e649c0 Add .gitea/workflows/cpp.yml
Signed-off-by: enderice2 <enderice2@no-reply@enderice2.com>
2024-08-25 16:39:40 +03:00
enderice2
f251feb046 Update .gitea/workflows/test.yml 2024-08-25 13:00:41 +03:00
enderice2
4fd4157677 Add ci
Signed-off-by: enderice2 <enderice2@no-reply@enderice2.com>
2024-08-25 12:55:02 +03:00
enderice2
bbbffff9ac Add simple.c 2023-10-06 03:02:00 +03:00
enderice2
73e4b3705a Add .gitea/workflows/test.yml 2023-10-06 02:55:49 +03:00
7 changed files with 101 additions and 0 deletions

@@ -0,0 +1,46 @@
name: Build OS
on: [push]
jobs:
buildcompiler:
name: Build Cross-Compiler & Toolchain
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Cache cross Folder
id: cache-cross
uses: actions/cache@v4
with:
path: gyatt
key: ${{ runner.os }}-cross-${{ hashFiles('gyatt') }}
- name: Update System
if: steps.cache-cross.outputs.cache-hit != 'true'
run: echo nice!
compile_amd64:
name: Build amd64
runs-on: ubuntu-latest
needs: [buildcompiler]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Cache cross Folder
id: cache-cross
uses: actions/cache@v4
with:
path: gyatto
key: ${{ runner.os }}-cross-${{ hashFiles('gyatt') }}
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: gyatto
path: gyatto

16
.gitea/workflows/cpp.yml Normal file

@@ -0,0 +1,16 @@
name: C/C++ CI
on: [push]
jobs:
ubuntu-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build project
uses: nicledomaS/cmake_build_action@v1.4
with:
submodule_update: ON
run_tests: ON
unit_test_build: -Dtest=ON

@@ -0,0 +1,19 @@
name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."

13
.gitea/workflows/test.yml Normal file

@@ -0,0 +1,13 @@
name: test
on:
- push
- pull_request
jobs:
lint:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: test
run: echo Hello World!

2
ci Normal file

@@ -0,0 +1,2 @@
ci
ci

1
gyatt Normal file

@@ -0,0 +1 @@
skibidi

4
simple.c Normal file

@@ -0,0 +1,4 @@
int main()
{
return 0;
}