mirror of
				https://github.com/oneclickvirt/ecs.git
				synced 2025-10-31 02:46:40 +08:00 
			
		
		
		
	Compare commits
	
		
			4 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 913a1725c1 | ||
|   | f1acbd361b | ||
|   | d6f62f8624 | ||
|   | 94da890522 | 
							
								
								
									
										22
									
								
								.github/workflows/main.yaml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										22
									
								
								.github/workflows/main.yaml
									
									
									
									
										vendored
									
									
								
							| @@ -40,3 +40,25 @@ jobs: | ||||
|         env: | ||||
|           GITHUB_TOKEN: ${{ secrets.GHT }} | ||||
|           GOPRIVATE: github.com/oneclickvirt/security | ||||
|  | ||||
|       - name: Update goecs.sh with new version | ||||
|         if: startsWith(github.ref, 'refs/tags/v') | ||||
|         run: | | ||||
|           VERSION="${GITHUB_REF#refs/tags/v}" | ||||
|           FILE="goecs.sh" | ||||
|           BRANCH="master" | ||||
|           # Checkout master branch | ||||
|           git fetch origin $BRANCH:$BRANCH | ||||
|           git switch $BRANCH | ||||
|           # Replace version in goecs.sh | ||||
|           sed -i "s/\(_yellow \"Unable to get version info, using default version \).*\(\".*\)/\1$VERSION\2/" "$FILE" | ||||
|           sed -i "s/\(ECS_VERSION=\"\).*\(\"\)/\1$VERSION\2/" "$FILE" | ||||
|           # Commit and push | ||||
|           git config user.name "github-actions" | ||||
|           git config user.email "github-actions@github.com" | ||||
|           git add "$FILE" | ||||
|           git commit -m "chore: update ECS_VERSION to $VERSION in goecs.sh" | ||||
|           git push origin $BRANCH | ||||
|         env: | ||||
|           GITHUB_TOKEN: ${{ secrets.GHT }} | ||||
|  | ||||
|   | ||||
| @@ -40,9 +40,10 @@ Shell 版本:[https://github.com/spiritLHLS/ecs](https://github.com/spiritLHLS | ||||
| > 更多架构与系统请自行测试,如有问题请开 issues。 | ||||
|  | ||||
| ### **待支持的系统** | ||||
| | 系统 | 说明                       | | ||||
| |-----|--------------------------| | ||||
| | MacOS | 存在硬件测试 BUG 未修复,存在环境依赖未修复 | | ||||
| | 系统 | 说明                        | | ||||
| |-----|---------------------------| | ||||
| | MacOS | 存在硬件测试 BUG 未修复,存在环境依赖未修复  | | ||||
| | Android(arm64) | 存在权限问题未修复,非安卓系统的ARM架构无问题  | | ||||
|  | ||||
| --- | ||||
|  | ||||
|   | ||||
							
								
								
									
										14
									
								
								README_EN.md
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								README_EN.md
									
									
									
									
									
								
							| @@ -39,10 +39,10 @@ Shell version: [https://github.com/spiritLHLS/ecs/blob/main/README_EN.md](https: | ||||
| > Please test additional architectures and systems yourself. If you encounter any issues, please open an issue. | ||||
|  | ||||
| ### **Systems Pending Support** | ||||
| | OS     | Notes                                                  | | ||||
| |--------|--------------------------------------------------------| | ||||
| | MacOS  | Hardware testing bugs and environment dependencies unresolved | | ||||
|  | ||||
| | OS     | Notes                                                                                           | | ||||
| |--------|-------------------------------------------------------------------------------------------------| | ||||
| | MacOS  | Hardware testing bugs and environment dependencies unresolved                                   | | ||||
| | Android(arm64) | Permission issues that are not fixed, no problems with ARM architecture for non-Android systems | | ||||
| --- | ||||
|  | ||||
| ## **Features** | ||||
| @@ -90,6 +90,12 @@ Shell version: [https://github.com/spiritLHLS/ecs/blob/main/README_EN.md](https: | ||||
|   export noninteractive=true && curl -L https://cnb.cool/oneclickvirt/ecs/-/git/raw/main/goecs.sh -o goecs.sh && chmod +x goecs.sh && bash goecs.sh env && bash goecs.sh install && goecs -l en | ||||
|   ``` | ||||
|  | ||||
| - **Short Link:** | ||||
|  | ||||
|   ```bash | ||||
|   export noninteractive=true && curl -L https://bash.spiritlhl.net/goecs -o goecs.sh && chmod +x goecs.sh && bash goecs.sh env && bash goecs.sh install && goecs | ||||
|   `` | ||||
|  | ||||
| #### **Detailed instructions** | ||||
|  | ||||
| **Detailed description** of the commands in **Command **Controls whether to install dependencies**, **Whether to update the package manager**, **Default interaction mode can be selected*** | ||||
|   | ||||
							
								
								
									
										6
									
								
								go.mod
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								go.mod
									
									
									
									
									
								
							| @@ -9,7 +9,7 @@ require ( | ||||
| 	github.com/oneclickvirt/CommonMediaTests v0.0.4-20250329123841 | ||||
| 	github.com/oneclickvirt/UnlockTests v0.0.26-20250329125926 | ||||
| 	github.com/oneclickvirt/backtrace v0.0.5-20250517095024 | ||||
| 	github.com/oneclickvirt/basics v0.0.12-20250517101807 | ||||
| 	github.com/oneclickvirt/basics v0.0.12-20250521031609 | ||||
| 	github.com/oneclickvirt/cputest v0.0.10-20250404151448 | ||||
| 	github.com/oneclickvirt/defaultset v0.0.2-20240624082446 | ||||
| 	github.com/oneclickvirt/disktest v0.0.8-20250425015826 | ||||
| @@ -18,8 +18,8 @@ require ( | ||||
| 	github.com/oneclickvirt/nt3 v0.0.5-20250416131047 | ||||
| 	github.com/oneclickvirt/pingtest v0.0.7-20250413051539 | ||||
| 	github.com/oneclickvirt/portchecker v0.0.3-20250329125750 | ||||
| 	github.com/oneclickvirt/security v0.0.4-20250519011733 | ||||
| 	github.com/oneclickvirt/speedtest v0.0.9-20250329130205 | ||||
| 	github.com/oneclickvirt/security v0.0.4-20250522031128 | ||||
| 	github.com/oneclickvirt/speedtest v0.0.9-20250521034111 | ||||
| ) | ||||
|  | ||||
| require ( | ||||
|   | ||||
							
								
								
									
										12
									
								
								go.sum
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								go.sum
									
									
									
									
									
								
							| @@ -103,8 +103,8 @@ github.com/oneclickvirt/UnlockTests v0.0.26-20250329125926 h1:H5//xwVjDR02bQ1hLa | ||||
| github.com/oneclickvirt/UnlockTests v0.0.26-20250329125926/go.mod h1:yXWIZB6iLS88pEd9m4QJi1GENn+7I91zA72y5ONz2Oc= | ||||
| github.com/oneclickvirt/backtrace v0.0.5-20250517095024 h1:j912aga/17znOqMB2VAxWOQYa4GL6YMFBhv+6c7jkvA= | ||||
| github.com/oneclickvirt/backtrace v0.0.5-20250517095024/go.mod h1:5AH00bo41hH3d2/JVuCTlBkZUs3AXX4nlKVXb6piZcI= | ||||
| github.com/oneclickvirt/basics v0.0.12-20250517101807 h1:5glhEre4BhttiE3uUTrMy9iwd3OQfK7qjQFTTfhKVIA= | ||||
| github.com/oneclickvirt/basics v0.0.12-20250517101807/go.mod h1:yN1IEOXN6v/GJqJSA70Pooo6nXBI/6rq72vTY72wJMQ= | ||||
| github.com/oneclickvirt/basics v0.0.12-20250521031609 h1:3WxHe+jKrZHF81oa8Xk3IgHCRqTC5GDjv8alR0geamU= | ||||
| github.com/oneclickvirt/basics v0.0.12-20250521031609/go.mod h1:yN1IEOXN6v/GJqJSA70Pooo6nXBI/6rq72vTY72wJMQ= | ||||
| github.com/oneclickvirt/cputest v0.0.10-20250404151448 h1:ovGtCwFXG0qmpyNDRqcNDIiAmhrtemCjIUXTJ1fPH0o= | ||||
| github.com/oneclickvirt/cputest v0.0.10-20250404151448/go.mod h1:MmaHN9+XMntI3rLycwj8Ne31fG18IfNoa8N2utDK1CY= | ||||
| github.com/oneclickvirt/dd v0.0.1-20250406062523 h1:jegTww4fuoFEqwFozvGJEqUNI/5ew3QJ0XcKZZ/zuTs= | ||||
| @@ -125,10 +125,10 @@ github.com/oneclickvirt/pingtest v0.0.7-20250413051539 h1:mYOsEmMtwKr40hwM2NimVL | ||||
| github.com/oneclickvirt/pingtest v0.0.7-20250413051539/go.mod h1:d3Ntx5m9lMll3a/k3+2B+5emj//vgDh4/NHTxs2qQE8= | ||||
| github.com/oneclickvirt/portchecker v0.0.3-20250329125750 h1:TTNL0pnQlRsn046kW59I/9UWRpihttFHWnU7Ixycggk= | ||||
| github.com/oneclickvirt/portchecker v0.0.3-20250329125750/go.mod h1:HQxSTrqM8/QFqHMTBZ7S8H9eEO5FkUXU1eb7ZX5Mk+k= | ||||
| github.com/oneclickvirt/security v0.0.4-20250519011733 h1:/APm2eD1SUKAA201WTQNjlKwWEun8F/0lYRh4tPtwuM= | ||||
| github.com/oneclickvirt/security v0.0.4-20250519011733/go.mod h1:T6TjdM4ixug+fOsgKPYZTD6l1qdLz9kpgdW8xuSAUig= | ||||
| github.com/oneclickvirt/speedtest v0.0.9-20250329130205 h1:XWM6FhObi+2bEkntPcAAKkiS9w7r6j79DOtmlbq4hhs= | ||||
| github.com/oneclickvirt/speedtest v0.0.9-20250329130205/go.mod h1:zd5ZgIGslmtQLQehEfRjyumlvgDHTpCSMchKfKXoASI= | ||||
| github.com/oneclickvirt/security v0.0.4-20250522031128 h1:k/zpiES/W0lW6Rumlmo4i7zp2ncimfeOUKadrylde8M= | ||||
| github.com/oneclickvirt/security v0.0.4-20250522031128/go.mod h1:hdCr9UFkJ0tQfFP4mIycZehF5v7VfzSQwNn2qkY0bGo= | ||||
| github.com/oneclickvirt/speedtest v0.0.9-20250521034111 h1:yygDk+s5qFhPMDRzdMfyopm1xU512peNqY6WYyvYcfY= | ||||
| github.com/oneclickvirt/speedtest v0.0.9-20250521034111/go.mod h1:zd5ZgIGslmtQLQehEfRjyumlvgDHTpCSMchKfKXoASI= | ||||
| github.com/onsi/ginkgo/v2 v2.22.1 h1:QW7tbJAUDyVDVOM5dFa7qaybo+CRfR7bemlQUN6Z8aM= | ||||
| github.com/onsi/ginkgo/v2 v2.22.1/go.mod h1:S6aTpoRsSq2cZOd+pssHAlKW/Q/jZt6cPrPlnj4a1xM= | ||||
| github.com/onsi/gomega v1.36.1 h1:bJDPBO7ibjxcbHMgSCoo4Yj18UWbKDlLwX1x9sybDcw= | ||||
|   | ||||
		Reference in New Issue
	
	Block a user