tangled
alpha
login
or
join now
zenfyr.dev
/
xmpp-discord-bridge
0
fork
atom
fork of https://f-hub.org/XMPP/xmpp-discord-bridge
0
fork
atom
overview
issues
pulls
pipelines
feat!: started working on woodpecker pipeline (unfinished)
Masked Witch
1 year ago
dc5621d6
90309ed2
+24
1 changed file
expand all
collapse all
unified
split
.woodpecker
build.yaml
+24
.woodpecker/build.yaml
reviewed
···
1
1
+
2
2
+
when:
3
3
+
event: [ push, tag, pull_request ]
4
4
+
branch: master
5
5
+
path: [ "${CI_REPO_NAME}/**/*", "pyproject.toml", "uv.lock", "README.md" ]
6
6
+
7
7
+
steps:
8
8
+
version:
9
9
+
image: python:3.11-buster
10
10
+
11
11
+
commands:
12
12
+
- python -m pip install --upgrade pip
13
13
+
- python -m pip install -r pyproject.toml
14
14
+
- name: build
15
15
+
16
16
+
commands:
17
17
+
- echo "This is the build step"
18
18
+
- echo "binary-data-123" > executable
19
19
+
- name: a-test-step
20
20
+
image: golang:1.16
21
21
+
commands:
22
22
+
- echo "Testing ..."
23
23
+
- ./executable
24
24
+