Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3d81eee094 | ||
|
|
448f757bd1 | ||
|
|
89d29492e6 | ||
|
|
fa191a02d3 |
@@ -1,5 +1,5 @@
|
|||||||
name: pipeline
|
name: pipeline
|
||||||
run-name: ${{ gitea.actor }} is running script
|
run-name: ${{ gitea.actor }} is running script
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|||||||
@@ -5,6 +5,11 @@
|
|||||||
# pull official base image
|
# pull official base image
|
||||||
FROM python:3.10-bookworm as BUILDER
|
FROM python:3.10-bookworm as BUILDER
|
||||||
|
|
||||||
|
# install JDK 17
|
||||||
|
ENV JAVA_HOME=/opt/java/openjdk
|
||||||
|
COPY --from=eclipse-temurin:17-jre $JAVA_HOME $JAVA_HOME
|
||||||
|
ENV PATH="${JAVA_HOME}/bin:${PATH}"
|
||||||
|
|
||||||
# install Ookla's speedtest
|
# install Ookla's speedtest
|
||||||
RUN apt update && \
|
RUN apt update && \
|
||||||
apt install -y speedtest-cli
|
apt install -y speedtest-cli
|
||||||
|
|||||||
Vendored
+21
@@ -0,0 +1,21 @@
|
|||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
|
||||||
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
echo 'Building..'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Test') {
|
||||||
|
steps {
|
||||||
|
echo 'Testing..'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Deploy') {
|
||||||
|
steps {
|
||||||
|
echo 'Deploying..'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,15 +3,27 @@ async-timeout==4.0.2
|
|||||||
attrs==23.1.0
|
attrs==23.1.0
|
||||||
certifi==2023.5.7
|
certifi==2023.5.7
|
||||||
charset-normalizer==3.2.0
|
charset-normalizer==3.2.0
|
||||||
|
cron-converter==1.0.2
|
||||||
discord-webhook==1.1.0
|
discord-webhook==1.1.0
|
||||||
dnspython==2.3.0
|
dnspython==2.3.0
|
||||||
|
flake8==6.0.0
|
||||||
frozenlist==1.3.3
|
frozenlist==1.3.3
|
||||||
idna==3.4
|
idna==3.4
|
||||||
|
mccabe==0.7.0
|
||||||
multidict==6.0.4
|
multidict==6.0.4
|
||||||
|
mypy==1.4.1
|
||||||
|
mypy-extensions==1.0.0
|
||||||
|
pycodestyle==2.10.0
|
||||||
|
pyflakes==3.0.1
|
||||||
pymongo==4.4.0
|
pymongo==4.4.0
|
||||||
|
python-dateutil==2.8.2
|
||||||
python-dotenv==1.0.0
|
python-dotenv==1.0.0
|
||||||
python-logging-discord-handler==0.1.4
|
python-logging-discord-handler==0.1.4
|
||||||
requests==2.31.0
|
requests==2.31.0
|
||||||
|
six==1.16.0
|
||||||
speedtest-cli==2.1.3
|
speedtest-cli==2.1.3
|
||||||
|
tomli==2.0.1
|
||||||
|
types-python-dateutil==2.8.19.14
|
||||||
|
typing_extensions==4.7.1
|
||||||
urllib3==2.0.3
|
urllib3==2.0.3
|
||||||
yarl==1.9.2
|
yarl==1.9.2
|
||||||
|
|||||||
Reference in New Issue
Block a user