gyatt
Some checks are pending
C/C++ CI / ubuntu-build (push) Waiting to run
test / test (push) Waiting to run
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3m2s

Signed-off-by: enderice2 <enderice2@protonmail.com>
This commit is contained in:
enderice2 2025-01-28 12:48:04 +02:00
parent 5936b0217a
commit 49906f445e

View File

@ -0,0 +1,50 @@
name: Build OS
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
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: gyatt
key: ${{ runner.os }}-cross-${{ hashFiles('tools/Makefile') }}
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: gyatt
path: gyatt