1
0
test3/.gitea/workflows/test1.yaml
Workflow config file is invalid. Please check your config file: yaml: line 8: mapping values are not allowed in this context
2025-05-24 17:45:59 +03:00

27 lines
635 B
YAML

name: Build
run-name: build
on: [push]
jobs:
build:
runs-on: debian-prepared
container:
image: debian-prepared
steps:
- run: pwd
- run: echo "${{ gitea.workspace }}"
- run: apt update
- run: apt install -y git
- run: git init
- run: git remote add gitea http://10.1.1.1:3000/hasslesstech/test3
- run: git fetch
- run: git checkout master
- run: ls -lh
- 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