Merge branch 'gitea_release' of arif/ci-demo into master
All checks were successful
the build was successful
All checks were successful
the build was successful
This commit is contained in:
commit
102e0a365f
13
.drone.yml
13
.drone.yml
@ -1,8 +1,17 @@
|
|||||||
pipeline:
|
pipeline:
|
||||||
build:
|
build:
|
||||||
image: gcc
|
image: gcc:4.9
|
||||||
commands:
|
commands:
|
||||||
- make clean
|
- make clean
|
||||||
- make
|
- make
|
||||||
- make install
|
- make install
|
||||||
|
gitea_release:
|
||||||
|
image: plugins/gitea-release
|
||||||
|
base_url: https://git.wicak.co
|
||||||
|
secrets: [ gitea_token ]
|
||||||
|
files: bin/*
|
||||||
|
checksum:
|
||||||
|
- sha1
|
||||||
|
- sha256
|
||||||
|
when:
|
||||||
|
event: tag
|
||||||
|
|||||||
2
Makefile
2
Makefile
@ -11,4 +11,4 @@ install:
|
|||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -f hello
|
rm -rf bin/
|
||||||
|
|||||||
@ -3,6 +3,6 @@ using namespace std;
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
cout << "Hello, Arif!";
|
cout << "Hello, PR#2!";
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user