ass14
Gitea Actions Demo / SunOS (push) Successful in 4s Details

This commit is contained in:
Charadon 2023-11-09 14:11:11 -05:00
parent bcb7e5932a
commit 06652d2f50
2 changed files with 13 additions and 2 deletions

View File

@ -3,9 +3,10 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Compile:
SunOS:
runs-on: SunOS
steps:
- name: Check out repository code
uses: https://gitea.com/actions/checkout@v2
- run: gcc -v hello.c -o hello
- name: Compile
run: gmake

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
CC ?= gcc
CFLAGS ?= -O3 -ggdb -g3 -Wall -Wextra -Wpedantic
all: hello
hello:
$(CC) $(CFLAGS) hello.c -o hello
clean:
-rm hello