This commit is contained in:
64
.gitea/workflows/tag.yaml
Normal file
64
.gitea/workflows/tag.yaml
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
name: Build and Deploy on Tag
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- 'v*'
|
||||||
|
|
||||||
|
env:
|
||||||
|
VERSION: ${{ gitea.ref_name }}
|
||||||
|
CLWS_PACKAGE: tesses50/crosslang-withshell
|
||||||
|
CPKG_PACKAGE: tesses50/cpkg
|
||||||
|
GITEA_DOMAIN: git.tesses.org
|
||||||
|
GITEA_REGISTRY_USER: tesses50
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-tap:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- run: |
|
||||||
|
cd vscode-extension
|
||||||
|
npm install
|
||||||
|
npm install -g typescript
|
||||||
|
npm install -g @@vscode/vsce
|
||||||
|
vsce package
|
||||||
|
cd ..
|
||||||
|
wget -O /usr/local/bin/crosslang https://redirect.tesses.net/cl-slim-x86_64-linux-musl
|
||||||
|
chmod 755 /usr/local/bin/crosslang
|
||||||
|
ln -s /usr/local/bin/crosslang /usr/local/bin/crossc
|
||||||
|
ln -s /usr/local/bin/crosslang /usr/local/bin/crossint
|
||||||
|
ln -s /usr/local/bin/crosslang /usr/local/bin/crossvm
|
||||||
|
crossint ./build.tcross pack
|
||||||
|
mkdir -p artifacts
|
||||||
|
cp Tesses.CrossLang.ShellPackage-*.crvm artifacts/ShellPackage.crvm
|
||||||
|
cp Tesses.CrossLang.PackageServer/bin/Tesses.CrossLang.PackageServer-*.crvm artifacts/CPKG.crvm
|
||||||
|
- name: "Publish artifacts"
|
||||||
|
uses: akkuman/gitea-release-action@v1
|
||||||
|
env:
|
||||||
|
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
|
||||||
|
with:
|
||||||
|
prerelease: true
|
||||||
|
files: |-
|
||||||
|
artifacts/**
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
- name: Log in to registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ${{ env.GITEA_DOMAIN }}
|
||||||
|
username: ${{ env.GITEA_REGISTRY_USER }}
|
||||||
|
password: ${{ secrets.PACKAGE_AND_BREW }}
|
||||||
|
- name: Build and push image
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: ./Dockerfile
|
||||||
|
push: true
|
||||||
|
tags: ${{ env.GITEA_DOMAIN }}/${{ env.CLWS_PACKAGE }}:latest
|
||||||
|
- name: Build and push image
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: ./Dockerfile.cpkg
|
||||||
|
push: true
|
||||||
|
tags: ${{ env.GITEA_DOMAIN }}/${{ env.CPKG_PACKAGE }}:latest
|
||||||
@@ -124,7 +124,7 @@ jobs:
|
|||||||
interpreter:
|
interpreter:
|
||||||
type: DefaultInterpreter
|
type: DefaultInterpreter
|
||||||
commands: |
|
commands: |
|
||||||
curl "$COOLIFY_WEBHOOK" -H "Authorization: Bearer $COOLIFY_TOKEN"
|
curl "$COOLIFY_WEBHOOK" -H "Authorization: Bearer $COOLIFY_TOKEN" > /dev/null
|
||||||
envVars:
|
envVars:
|
||||||
- name: COOLIFY_WEBHOOK
|
- name: COOLIFY_WEBHOOK
|
||||||
value: '@secret:COOLIFY_WEBHOOK@'
|
value: '@secret:COOLIFY_WEBHOOK@'
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
FROM onedev.site.tesses.net/crosslang/crosslang:latest
|
FROM git.tesses.org/tesses50/crosslang:latest
|
||||||
|
|
||||||
RUN crosslang update-shell
|
RUN crosslang update-shell
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM onedev.site.tesses.net/crosslang/crosslang:latest
|
FROM git.tesses.org/tesses50/crosslang:latest
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY ./Tesses.CrossLang.PackageServer/bin/Tesses.CrossLang.PackageServer-1.0.0.0-prod.crvm /app/Tesses.CrossLang.PackageServer-1.0.0.0-prod.crvm
|
COPY ./Tesses.CrossLang.PackageServer/bin/Tesses.CrossLang.PackageServer-1.0.0.0-prod.crvm /app/Tesses.CrossLang.PackageServer-1.0.0.0-prod.crvm
|
||||||
|
|
||||||
@@ -34,26 +34,13 @@ func New.Tesses.CrossLang.SharedViewFilesystem()
|
|||||||
return null;
|
return null;
|
||||||
},
|
},
|
||||||
EnumeratePaths = enumeratePaths,
|
EnumeratePaths = enumeratePaths,
|
||||||
RegularFileExists = (path) => {
|
Stat = (path) => {
|
||||||
each(var fs : fileSystems)
|
each(var fs : fileSystems)
|
||||||
{
|
{
|
||||||
if(fs.RegularFileExists(path)) return true;
|
const st = fs.Stat(path);
|
||||||
|
if(TypeIsDictionary(st)) return st;
|
||||||
}
|
}
|
||||||
return false;
|
return null;
|
||||||
},
|
|
||||||
FileExists = (path) => {
|
|
||||||
each(var fs : fileSystems)
|
|
||||||
{
|
|
||||||
if(fs.FileExists(path)) return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
},
|
|
||||||
DirectoryExists = (path) => {
|
|
||||||
each(var fs : fileSystems)
|
|
||||||
{
|
|
||||||
if(fs.DirectoryExists(path)) return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
},
|
},
|
||||||
AddFS = (fs)=>{
|
AddFS = (fs)=>{
|
||||||
fileSystems.Add(fs);
|
fileSystems.Add(fs);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
pkg:
|
pkg:
|
||||||
image: onedev.site.tesses.net/crosslang/crosslangextras/packageserver:latest
|
image: git.tesses.org/tesses50/cpkg:latest
|
||||||
ports:
|
ports:
|
||||||
- "4206:4206"
|
- "4206:4206"
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
Reference in New Issue
Block a user