1
0
test3/.gitea/workflows/test1.yaml
hasslesstech 2fcefcecef
Some checks failed
Build / build (push) Failing after 2m19s
test6
2025-05-24 17:02:48 +03:00

17 lines
317 B
YAML

name: Build
run-name: build
on: [push]
jobs:
build:
runs-on: debian-latest
steps:
- run: apt update
- run: apt install -y gcc
- name: Build funtions
run: gcc -c f.c
- name: Build core
run: gcc -c core.c
- name: Link program
run: gcc f.o core.o -o core