Compare commits

...

14 Commits

Author SHA1 Message Date
Peter J. Holzer 82cc814ba5 Fix context name
Gitea Actions Test - Make / Explore-Gitea-Actions (push) Successful in 4s Details
2024-03-17 21:07:36 +01:00
Peter J. Holzer 5a8aeb07b0 Test variables
Gitea Actions Test - Make / Explore-Gitea-Actions (push) Successful in 23s Details
2024-03-17 20:56:30 +01:00
Peter J. Holzer ce95e24e18 Add source code %-P
Gitea Actions Test - Make / Explore-Gitea-Actions (push) Successful in 2s Details
2023-07-09 22:11:03 +02:00
Peter J. Holzer c67ff0ae0d Checkout repo
Gitea Actions Test - Make / Explore-Gitea-Actions (push) Failing after 3s Details
2023-07-09 22:10:03 +02:00
Peter J. Holzer 00d120fb30 Look around
Gitea Actions Test - Make / Explore-Gitea-Actions (push) Failing after 0s Details
2023-07-09 22:07:29 +02:00
Peter J. Holzer a97cdaf10f Tweak
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 2s Details
Gitea Actions Test - Make / Explore-Gitea-Actions (push) Failing after 0s Details
2023-07-09 22:02:45 +02:00
Peter J. Holzer 677e0ef2ef Test gitea actions on host
Gitea Actions Test - Make / Explore-Gitea-Actions (push) Failing after 0s Details
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled Details
2023-07-09 21:54:12 +02:00
Peter J. Holzer 677f41d088 Prod
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s Details
2023-07-08 20:33:43 +02:00
Peter J. Holzer 43938e6d7a Add a demo action
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 2m35s Details
(see https://blog.gitea.io/2023/03/hacking-on-gitea-actions/)
2023-07-08 17:53:08 +02:00
Peter J. Holzer fb9ce0a2df Merge branch 'master' of git.hjp.at:hjp/sandkiste 2022-10-22 22:37:19 +02:00
Peter J. Holzer 1bf6c3f105 Provoke a conflict 2022-10-22 22:35:08 +02:00
hjp 3be8afe984 Update 'README.md' 2022-10-22 22:34:36 +02:00
hjp 54870ae1b5 Update 'README.md' 2022-10-22 22:33:28 +02:00
hjp 406bbc2296 Update 'README.md' 2022-10-22 22:13:49 +02:00
4 changed files with 29 additions and 3 deletions

View File

@ -0,0 +1,14 @@
name: Gitea Actions Test - Make
run-name: make
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: trintignant
steps:
- run: pwd
- name: Check out repository code
uses: actions/checkout@v3
- run: echo ${{vars.TEST_VAR}}
- run: cd ${{ gitea.workspace }}; ls -l
- run: cd ${{ gitea.workspace }}; make
- run: cd ${{ gitea.workspace }}; make install

6
Makefile Normal file
View File

@ -0,0 +1,6 @@
all: hello
install: /tmp/hello
/tmp/%: %
install $^ $@

View File

@ -1,7 +1,7 @@
1
2
2 resolved!
3
33 (still all on the same line)
4
5
5, 6, 7, 8!

6
hello.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main(void) {
printf("hello, gitea actions\n");
return 0;
}