Compare commits

..

No commits in common. "main" and "v1.0" have entirely different histories.
main ... v1.0

7 changed files with 0 additions and 101 deletions

View File

@ -1,46 +0,0 @@
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

View File

@ -1,16 +0,0 @@
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

View File

@ -1,19 +0,0 @@
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 }}."

View File

@ -1,13 +0,0 @@
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
View File

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

1
gyatt
View File

@ -1 +0,0 @@
skibidi

View File

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