update:configure file #53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ubuntu build workflows | |
on: | |
push: | |
branches: [ "develop" ] | |
paths: | |
- 'XEngine_Source/**' | |
- 'XEngine_Release/**' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
strategy: | |
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable. | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
#- os: ubuntu-24.04 | |
runs-on: ${{ matrix.os }} | |
steps: | |
# 检出您的主仓库代码 | |
- name: Checkout main repository code | |
uses: actions/checkout@v4 | |
with: | |
ref: 'develop' | |
# 检出依赖的xengine仓库到指定的xengine目录 | |
- name: Checkout dependency repository (xengine) | |
uses: actions/checkout@v4 | |
with: | |
repository: libxengine/libxengine | |
path: libxengine | |
- name: sub module checkout (opensource) | |
run: | | |
git submodule init | |
git submodule update | |
# 设置依赖库的环境变量 | |
- name: Set up Dependency Environment Variables | |
run: | | |
cd libxengine | |
chmod 777 * | |
sudo ./XEngine_LINEnv.sh -i 3 | |
cd .. | |
#编译 | |
- name: make | |
run: | | |
cd XEngine_Source | |
make | |
make FLAGS=InstallAll | |
make FLAGS=CleanAll | |
make RELEASE=1 | |
make FLAGS=InstallAll | |
make FLAGS=CleanAll | |
cd .. | |
- name: test | |
run: | | |
cd XEngine_Release | |
./XEngine_MQServiceApp -t | |
- name: Upload folder as artifact with ubuntu | |
uses: actions/upload-artifact@v4 | |
with: | |
name: XEngine_MQServiceApp-x86_64-Ubuntu | |
path: XEngine_Release/ |