Skip to content

Commit a3b40f0

Browse files
author
Matt Reeves
committedJul 31, 2024
Merge branch 'main' into renovate/ghcr.io-linuxserver-syncthing
2 parents 96eb0fd + a0d9eec commit a3b40f0

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed
 

‎.forgejo/workflows/CD.yml

+11-4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414
- name: Fetch all history for git diff
1515
run: git fetch --depth=2
1616

17+
- name: Install jq
18+
run: |
19+
apt-get update && apt-get install -y jq
20+
1721
- name: Detect modified folders
1822
id: detect-changes
1923
run: |
@@ -85,10 +89,13 @@ jobs:
8589
8690
sleep 45 # Delay for 45 seconds before fetching logs
8791
88-
job_id=$(curl -s -H "Authorization: Bearer ${{ secrets.AWX_API_TOKEN }}" "https://awx.mafyuh.xyz/api/v2/job_templates/13/jobs/?order_by=-id" | grep -oP '"id":\s*\K[0-9]+')
89-
logs=$(curl -s -H "Authorization: Bearer ${{ secrets.AWX_API_TOKEN }}" "https://awx.mafyuh.xyz/api/v2/jobs/$job_id/stdout/?format=json")
90-
92+
job_id=$(curl -s -H "Authorization: Bearer ${{ secrets.AWX_API_TOKEN }}" https://awx.mafyuh.xyz/api/v2/job_templates/13/jobs/?order_by=-id | jq -r '.results[0].id')
93+
logs=$(curl -s -H "Authorization: Bearer ${{ secrets.AWX_API_TOKEN }}" https://awx.mafyuh.xyz/api/v2/jobs/$job_id/stdout/?format=json)
9194
echo "AWX Job Logs for folder: $folder"
95+
echo "Range:"
96+
echo "Start: $(echo "$logs" | jq -r '.range.start')"
97+
echo "End: $(echo "$logs" | jq -r '.range.end')"
98+
echo "Absolute End: $(echo "$logs" | jq -r '.range.absolute_end')"
9299
echo "Content:"
93-
echo "$logs" | grep -oP '"content":\s*"\K[^"]+' | sed 's/\\n/\n/g'
100+
echo "$(echo "$logs" | jq -r '.content')"
94101
done

‎docker/AI/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3.8"
22

33
services:
44
ollama:
5-
image: docker.mafyuh.xyz/ollama/ollama:0.2.6
5+
image: ollama/ollama:0.3.1
66
container_name: ollama
77
restart: unless-stopped
88
volumes:
@@ -29,7 +29,7 @@ services:
2929
- host.docker.internal:host-gateway
3030

3131
mindsdb:
32-
image: docker.mafyuh.xyz/mindsdb/mindsdb:v24.7.3.0
32+
image: mindsdb/mindsdb:v24.7.3.0
3333
container_name: mindsdb
3434
ports:
3535
- 47334:47334

‎docker/arm/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
services:
33
server:
4-
image: codeberg.org/forgejo/forgejo:7.0.5
4+
image: codeberg.org/forgejo/forgejo:8.0.0
55
container_name: forgejo
66
environment:
77
- USER_UID=1000

‎docker/arrs/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
services:
33
bazarr:
4-
image: ghcr.io/linuxserver/bazarr@sha256:25f0d19ba9226fdf15aec0fc7fa134ba89fc6f77f09d7bd45b33c5960c47821e
4+
image: ghcr.io/linuxserver/bazarr@sha256:e70de8a714ac57395d45052392001ec433b8f48aa1c204f13dae312cbcbe43af
55
container_name: bazarr
66
ports:
77
- "6767:6767"

‎docker/jellyfin/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
services:
33
jellyfin:
4-
image: ghcr.io/linuxserver/jellyfin@sha256:843878f35dc700e502798b39edb24b84b7b7ff0788f1b7b9b1e71d4f8d34f951
4+
image: ghcr.io/linuxserver/jellyfin@sha256:eadf16cadd823a5cbe1b92750ee74111f9b2cac894834477ab4a43a5fc835ebe
55
container_name: jellyfin
66
devices:
77
- /dev/dri/renderD129:/dev/dri/renderD129

0 commit comments

Comments
 (0)
Please sign in to comment.