Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
55a16cb
update:depend library
xengine-qyt Feb 9, 2026
5a31121
update:depend library
xengine-qyt Apr 3, 2026
06db213
ci:update last version
xengine-qyt Apr 3, 2026
8eac65e
fixed:build error
xengine-qyt Apr 3, 2026
9fa978c
delete:debug code
xengine-qyt Apr 3, 2026
8c5d7a3
update:depend library
xengine-qyt Apr 28, 2026
91cb0be
ci:update
xengine-qyt Apr 28, 2026
e5e9e01
ci:delete cppcheck.yml and update codeql.yml
xengine-qyt Apr 28, 2026
4ec9cdc
modify: does not case-sensitive for HTTP API function names
xengine-qyt Apr 28, 2026
3c553c1
feat: add agentic workflows for issue triage and auto fix
xengine-qyt May 9, 2026
dcfb31c
update:depend library
xengine-qyt May 9, 2026
9ec9edd
ci:add mint build and delete translator and codeql to pr
xengine-qyt May 9, 2026
8eec9ee
ci:update
xengine-qyt May 11, 2026
154f94d
Potential fix for code scanning alert no. 42
xengine-qyt May 11, 2026
0211af9
Potential fix for code scanning alert no. 41
xengine-qyt May 11, 2026
ad00485
Potential fix for code scanning alert no. 40
xengine-qyt May 11, 2026
9480cbd
Potential fix for code scanning alert no. 39
xengine-qyt May 11, 2026
53563aa
update:depend library
xengine-qyt Jun 2, 2026
803e020
update:vs to 2026 version
xengine-qyt Jun 2, 2026
bccd917
Merge pull request #39 from libxengine/autofix/high/alert-39
xengine-qyt Jun 2, 2026
299dec1
Merge pull request #37 from libxengine/autofix/high/alert-41
xengine-qyt Jun 2, 2026
e50760d
Merge pull request #36 from libxengine/autofix/high/alert-42
xengine-qyt Jun 2, 2026
70e9525
Merge pull request #38 from libxengine/autofix/high/alert-40
xengine-qyt Jun 2, 2026
5b28232
Merge branch 'master' of github.com:libxengine/XEngine_StreamMedia in…
xengine-qyt Jun 2, 2026
a41fdc0
modify:security code
xengine-qyt Jun 2, 2026
a7c7b53
update:configure file
xengine-qyt Jun 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/Alma_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ jobs:

steps:
- name: Checkout main repository code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Checkout dependency repository (xengine)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: libxengine/libxengine
path: libxengine

- name: sub module checkout (opensource)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: libxengine/XEngine_OPenSource
path: XEngine_Source/XEngine_DependLibrary
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
./XEngine_StreamMediaApp -t

- name: Upload folder as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: XEngine_StreamMediaApp-AlmaLinux_${{ matrix.version }}_${{ matrix.artifact }}
path: XEngine_Release/
8 changes: 4 additions & 4 deletions .github/workflows/Centos_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@ jobs:

steps:
- name: Checkout main repository code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Checkout dependency repository (xengine)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: libxengine/libxengine
path: libxengine

- name: sub module checkout (opensource)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: libxengine/XEngine_OPenSource
path: XEngine_Source/XEngine_DependLibrary
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
./XEngine_StreamMediaApp -t

- name: Upload folder as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: XEngine_StreamMediaApp-CentOS_${{ matrix.version }}_${{ matrix.artifact }}
path: XEngine_Release/
76 changes: 76 additions & 0 deletions .github/workflows/Mintbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
name: MintLinux build workflows

on:
push:
branches:
- 'develop'
paths:
- 'XEngine_Source/**'
- 'XEngine_Release/**'
- '.github/**'

permissions:
contents: read

jobs:
build:
runs-on: ${{ matrix.runner }}
container:
image: ${{ matrix.name }}
options: --platform ${{ matrix.platform }}
strategy:
matrix:
include:
- arch: amd64
runner: ubuntu-24.04
platform: linux/amd64
artifact: x86-64
name: linuxmintd/mint22-amd64
version: 22

steps:
- name: Checkout main repository code
uses: actions/checkout@v6

- name: Checkout dependency repository (xengine)
uses: actions/checkout@v6
with:
repository: libxengine/libxengine
path: libxengine

- name: sub module checkout (opensource)
uses: actions/checkout@v6
with:
repository: libxengine/XEngine_OPenSource
path: XEngine_Source/XEngine_DependLibrary

- name: install library
run: sudo apt install libsrt-gnutls-dev libsrtp2-dev -y

- name: Set TERM variable
run: echo "TERM=xterm" >> $GITHUB_ENV

- name: Set up Dependency ubuntu24.04 Environment
run: |
cd libxengine
chmod 777 *
sudo ./XEngine_LINEnv.sh -i 3

- name: make
run: |
cd XEngine_Source
make RELEASE=1
make FLAGS=InstallAll
make FLAGS=CleanAll
cd ..
- name: test
run: |
cd XEngine_Release
./XEngine_StreamMediaApp -t

- name: Upload folder as artifact
uses: actions/upload-artifact@v7
with:
name: XEngine_StreamMediaApp-MintLinux_${{ matrix.version }}_x86-64
path: XEngine_Release/
retention-days: 1
8 changes: 4 additions & 4 deletions .github/workflows/Rocky_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@ jobs:

steps:
- name: Checkout main repository code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: 'develop'

- name: Checkout dependency repository (xengine)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: libxengine/libxengine
path: libxengine

- name: sub module checkout (opensource)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: libxengine/XEngine_OPenSource
path: XEngine_Source/XEngine_DependLibrary
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
./XEngine_StreamMediaApp -t

- name: Upload folder as artifact with RockyLinux
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: XEngine_StreamMediaApp-RockyLinux_${{ matrix.version }}_${{ matrix.artifact }}
path: XEngine_Release/
Expand Down
Loading
Loading