mirror of
https://github.com/beclab/Olares
synced 2026-04-21 13:37:46 +00:00
feat: Merge the code currently scattered across the beclab and Above-os organizations into the https://github.com/beclab/Olares repository. (#1325)
* feat: refactor * refactor apps folder * feat: add vendor folder * refactor: package scripts --------- Co-authored-by: eball <liuy102@hotmail.com>
This commit is contained in:
parent
693d32bc2e
commit
79372a32af
451 changed files with 731 additions and 987 deletions
2
.github/workflows/build-redis-231.yaml
vendored
2
.github/workflows/build-redis-231.yaml
vendored
|
|
@ -17,4 +17,4 @@ jobs:
|
|||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
bash scripts/build-redis.sh linux/amd64 glibc-231
|
||||
bash build/build-redis.sh linux/amd64 glibc-231
|
||||
|
|
|
|||
4
.github/workflows/build-redis.yaml
vendored
4
.github/workflows/build-redis.yaml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
|||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
bash scripts/build-redis.sh linux/amd64
|
||||
bash build/build-redis.sh linux/amd64
|
||||
|
||||
push-arm64:
|
||||
runs-on: [self-hosted, linux, ARM64]
|
||||
|
|
@ -40,4 +40,4 @@ jobs:
|
|||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
sudo -E sh -c "bash scripts/build-redis.sh linux/arm64 && rm -rf redis*"
|
||||
sudo -E sh -c "bash build/build-redis.sh linux/arm64 && rm -rf redis*"
|
||||
|
|
|
|||
2
.github/workflows/build-ubuntu2204.yaml
vendored
2
.github/workflows/build-ubuntu2204.yaml
vendored
|
|
@ -17,4 +17,4 @@ jobs:
|
|||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
bash scripts/build-ubuntu2204.sh
|
||||
bash build/build-ubuntu2204.sh
|
||||
2
.github/workflows/build-wsl2326.yaml
vendored
2
.github/workflows/build-wsl2326.yaml
vendored
|
|
@ -17,4 +17,4 @@ jobs:
|
|||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
bash scripts/build-wsl-install-msi.sh
|
||||
bash build/build-wsl-install-msi.sh
|
||||
|
|
|
|||
12
.github/workflows/check.yaml
vendored
12
.github/workflows/check.yaml
vendored
|
|
@ -35,7 +35,7 @@ jobs:
|
|||
|
||||
- name: Pre package
|
||||
run: |
|
||||
bash scripts/package.sh
|
||||
bash build/package.sh
|
||||
|
||||
- name: Run chart-testing (lint)
|
||||
run: ct lint --chart-dirs build/installer/wizard/config,build/installer/wizard/config/apps,build/installer/wizard/config/gpu --check-version-increment=false --all
|
||||
|
|
@ -65,7 +65,7 @@ jobs:
|
|||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf
|
||||
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf
|
||||
|
||||
push-image-arm64:
|
||||
runs-on: [self-hosted, linux, ARM64]
|
||||
|
|
@ -85,7 +85,7 @@ jobs:
|
|||
AWS_DEFAULT_REGION: 'us-east-1'
|
||||
run: |
|
||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf linux/arm64
|
||||
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf linux/arm64
|
||||
|
||||
|
||||
push-deps:
|
||||
|
|
@ -105,7 +105,7 @@ jobs:
|
|||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
bash scripts/deps-manifest.sh && bash scripts/upload-deps.sh
|
||||
bash build/deps-manifest.sh && bash build/upload-deps.sh
|
||||
|
||||
push-deps-arm64:
|
||||
runs-on: [self-hosted, linux, ARM64]
|
||||
|
|
@ -128,7 +128,7 @@ jobs:
|
|||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||
bash scripts/deps-manifest.sh linux/arm64 && bash scripts/upload-deps.sh linux/arm64
|
||||
bash build/deps-manifest.sh linux/arm64 && bash build/upload-deps.sh linux/arm64
|
||||
|
||||
|
||||
|
||||
|
|
@ -151,7 +151,7 @@ jobs:
|
|||
|
||||
- name: Package installer
|
||||
run: |
|
||||
bash scripts/build.sh ${{ steps.vars.outputs.tag_version }}
|
||||
bash build/build.sh ${{ steps.vars.outputs.tag_version }}
|
||||
|
||||
- name: Upload package
|
||||
env:
|
||||
|
|
|
|||
2
.github/workflows/daily-lint-check.yaml
vendored
2
.github/workflows/daily-lint-check.yaml
vendored
|
|
@ -29,7 +29,7 @@ jobs:
|
|||
|
||||
- name: Pre package
|
||||
run: |
|
||||
bash scripts/package.sh
|
||||
bash build/package.sh
|
||||
|
||||
- name: Run chart-testing (lint)
|
||||
run: |
|
||||
|
|
|
|||
4
.github/workflows/push-deps-to-s3.yml
vendored
4
.github/workflows/push-deps-to-s3.yml
vendored
|
|
@ -33,7 +33,7 @@ jobs:
|
|||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
bash scripts/deps-manifest.sh && bash scripts/upload-deps.sh
|
||||
bash build/deps-manifest.sh && bash build/upload-deps.sh
|
||||
|
||||
push-arm64:
|
||||
runs-on: [self-hosted, linux, ARM64]
|
||||
|
|
@ -66,4 +66,4 @@ jobs:
|
|||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||
bash scripts/deps-manifest.sh linux/arm64 && bash scripts/upload-deps.sh linux/arm64
|
||||
bash build/deps-manifest.sh linux/arm64 && bash build/upload-deps.sh linux/arm64
|
||||
|
|
|
|||
4
.github/workflows/push-to-s3.yaml
vendored
4
.github/workflows/push-to-s3.yaml
vendored
|
|
@ -33,7 +33,7 @@ jobs:
|
|||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf
|
||||
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf
|
||||
|
||||
push-arm64:
|
||||
runs-on: [self-hosted, linux, ARM64]
|
||||
|
|
@ -65,4 +65,4 @@ jobs:
|
|||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf linux/arm64
|
||||
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf linux/arm64
|
||||
|
|
|
|||
12
.github/workflows/release-daily.yaml
vendored
12
.github/workflows/release-daily.yaml
vendored
|
|
@ -21,7 +21,7 @@ jobs:
|
|||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
AWS_DEFAULT_REGION: 'us-east-1'
|
||||
run: |
|
||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf
|
||||
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf
|
||||
|
||||
push-images-arm64:
|
||||
runs-on: [self-hosted, linux, ARM64]
|
||||
|
|
@ -36,7 +36,7 @@ jobs:
|
|||
AWS_DEFAULT_REGION: 'us-east-1'
|
||||
run: |
|
||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf linux/arm64
|
||||
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf linux/arm64
|
||||
|
||||
push-deps:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
@ -51,7 +51,7 @@ jobs:
|
|||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
bash scripts/deps-manifest.sh && bash scripts/upload-deps.sh
|
||||
bash build/deps-manifest.sh && bash build/upload-deps.sh
|
||||
|
||||
push-deps-arm64:
|
||||
runs-on: [self-hosted, linux, ARM64]
|
||||
|
|
@ -67,7 +67,7 @@ jobs:
|
|||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
run: |
|
||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||
bash scripts/deps-manifest.sh linux/arm64 && bash scripts/upload-deps.sh linux/arm64
|
||||
bash build/deps-manifest.sh linux/arm64 && bash build/upload-deps.sh linux/arm64
|
||||
|
||||
|
||||
upload-package:
|
||||
|
|
@ -86,7 +86,7 @@ jobs:
|
|||
|
||||
- name: Package installer
|
||||
run: |
|
||||
bash scripts/build.sh ${{ steps.vars.outputs.tag_version }}
|
||||
bash build/build.sh ${{ steps.vars.outputs.tag_version }}
|
||||
|
||||
- name: Upload to S3
|
||||
env:
|
||||
|
|
@ -123,7 +123,7 @@ jobs:
|
|||
|
||||
- name: Package installer
|
||||
run: |
|
||||
bash scripts/build.sh ${{ steps.vars.outputs.tag_version }}
|
||||
bash build/build.sh ${{ steps.vars.outputs.tag_version }}
|
||||
|
||||
- name: 'Archives'
|
||||
run: |
|
||||
|
|
|
|||
8
.github/workflows/release.yaml
vendored
8
.github/workflows/release.yaml
vendored
|
|
@ -23,7 +23,7 @@ jobs:
|
|||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
AWS_DEFAULT_REGION: 'us-east-1'
|
||||
run: |
|
||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf
|
||||
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf
|
||||
|
||||
push-arm64:
|
||||
runs-on: [self-hosted, linux, ARM64]
|
||||
|
|
@ -40,7 +40,7 @@ jobs:
|
|||
AWS_DEFAULT_REGION: 'us-east-1'
|
||||
run: |
|
||||
export PATH=$PATH:/usr/local/bin:/home/ubuntu/.local/bin
|
||||
bash scripts/image-manifest.sh && bash scripts/upload-images.sh .manifest/images.mf linux/arm64
|
||||
bash build/image-manifest.sh && bash build/upload-images.sh .manifest/images.mf linux/arm64
|
||||
|
||||
upload-package:
|
||||
needs: [push, push-arm64]
|
||||
|
|
@ -54,7 +54,7 @@ jobs:
|
|||
|
||||
- name: Package installer
|
||||
run: |
|
||||
bash scripts/build.sh ${{ github.event.inputs.tags }}
|
||||
bash build/build.sh ${{ github.event.inputs.tags }}
|
||||
|
||||
- name: Upload to S3
|
||||
env:
|
||||
|
|
@ -95,7 +95,7 @@ jobs:
|
|||
|
||||
- name: Package installer
|
||||
run: |
|
||||
bash scripts/build.sh ${{ github.event.inputs.tags }}
|
||||
bash build/build.sh ${{ github.event.inputs.tags }}
|
||||
|
||||
- name: 'Archives'
|
||||
run: |
|
||||
|
|
|
|||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -23,6 +23,7 @@ go.work
|
|||
|
||||
.dist
|
||||
.manifest
|
||||
.dependencies
|
||||
install-wizard-*.tar.gz
|
||||
olares-cli-*.tar.gz
|
||||
!ks-console-*.tgz
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 749 KiB After Width: | Height: | Size: 749 KiB |
|
|
@ -1,2 +0,0 @@
|
|||
# RSS Recommend
|
||||
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
# desktop
|
||||
|
||||
https://github.com/beclab/desktop
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
# files
|
||||
|
||||
https://github.com/beclab/files
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
# market-server
|
||||
|
||||
https://github.com/beclab/market-server
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
# Market (app store)
|
||||
|
||||
https://github.com/beclab/market
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
# vault
|
||||
|
||||
https://github.com/beclab/analytic
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
# search
|
||||
|
||||
https://github.com/beclab/dify-gateway
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
# devbox
|
||||
Terminus App development management tools
|
||||
|
||||
https://github.com/beclab/devbox
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
# system-apps
|
||||
|
||||
dashboard control-hub
|
||||
|
||||
https://github.com/beclab/system-apps
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
# TermiPass
|
||||
|
||||
https://github.com/beclab/TermiPass
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
# wizard
|
||||
|
||||
https://github.com/beclab/wizard
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue