Skip to content

Commit 9aad43a

Browse files
author
Yuuki
committed
Update: 082e762 (tes1)
1 parent daf816e commit 9aad43a

File tree

4 files changed

+60
-0
lines changed

4 files changed

+60
-0
lines changed

.github/workflows/yuukips45.yml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: YuukiPS Alpine (4.5) (21) (Broke)
2+
on:
3+
push:
4+
paths: # TES2
5+
- "gs/os-loc-alpine-gc"
6+
- "gs/ver_GSServer-GC-4.5-broke"
7+
- "gs/run.sh"
8+
- "gs/entrypoint_gc.sh"
9+
- ".github/workflows/yuukips45.yml"
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Sync DockerGS
15+
uses: actions/checkout@v3
16+
- name: Sync YuukiPS
17+
uses: actions/checkout@v3
18+
with:
19+
repository: YuukiPS/GSServer-GC
20+
ref: "4.5-broke"
21+
token: ${{ secrets.HUB_TOKEN }}
22+
path: gs/GSServer-GC
23+
- name: Setup Java
24+
uses: actions/setup-java@v3
25+
with:
26+
distribution: temurin
27+
java-version: "17"
28+
cache: "gradle"
29+
- name: Set up Docker Buildx
30+
uses: docker/setup-buildx-action@v2
31+
- name: Login to Docker Hub
32+
uses: docker/login-action@v2
33+
with:
34+
registry: registry.gitlab.com
35+
username: ${{secrets.DOCKER_USER_PRIVATE_GITLAB}}
36+
password: ${{secrets.DOCKER_PASSWORD_PRIVATE_GITLAB}}
37+
- name: Build Local Jar
38+
run: cd gs && chmod +x run.sh && sh run.sh alpine build 21 docker_action pv
39+
- name: Build Image Docker and Push
40+
uses: docker/build-push-action@v3
41+
with:
42+
context: ./gs
43+
file: ./gs/os-loc-alpine-gc
44+
push: true
45+
tags: |
46+
${{ env.ver1 }}
47+
${{ env.ver2 }}
48+
cache-from: type=gha
49+
cache-to: type=gha,mode=max

gs/entrypoint_gc.sh

+3
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,9 @@ elif echo "$version" | grep -F -w "3.8"; then
158158
elif echo "$version" | grep -F -w "4.0"; then
159159
version_res="4.0"
160160
resmd5="99c6662090d83386d5e81592139cf075"
161+
elif echo "$version" | grep -F -w "4.5"; then
162+
version_res="4.6" # jump (too lazy to re-fix res 4.5)
163+
# resmd5=""
161164
fi
162165

163166
echo "Runs with OS $OSVS"

gs/run.sh

+7
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,13 @@ if [ "$2" != "version_action" ]; then
4747
elif [ "$versioncontrol" = "20" ]; then # for public (dev)
4848
useBranchesProject="4.0"
4949
useBranchesRes="4.0"
50+
elif [ "$versioncontrol" = "21" ]; then
51+
mainProject="yuukigc"
52+
useBranchesProject="4.5-broke"
53+
useBranchesRes="4.6"
54+
useShortProject="yuukips"
55+
useProject="GSServer-GC"
56+
userHub="registry.gitlab.com/yuukips"
5057
fi
5158

5259
fi

gs/ver_GSServer-GC-4.5-broke

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
082e762

0 commit comments

Comments
 (0)