lmdbal/.gitea/workflows/main.yml

68 lines
1.8 KiB
YAML
Raw Normal View History

2023-08-19 22:31:19 +00:00
name: Main LMDBAL workfow
run-name: ${{ gitea.actor }} is running LMDBAL main workflow
2023-08-20 14:56:39 +00:00
on:
push:
branches:
- master
2023-08-19 22:31:19 +00:00
jobs:
2024-11-30 18:59:49 +00:00
debug-path:
name: Debug Repository State
runs-on: archlinux
steps:
- name: Check out repository code
uses: actions/checkout@v3
2024-11-30 19:11:30 +00:00
with:
fetch-depth: 0 # Ensure all files and full history are fetched
path: . # Clone into the root workspace directory
2024-11-30 18:59:49 +00:00
2024-11-30 19:11:30 +00:00
- name: List all files in the workspace
2024-11-30 18:59:49 +00:00
run: |
2024-11-30 19:11:30 +00:00
echo "Listing files in $(pwd):"
ls -la
echo "Checking .gitea contents:"
ls -la .gitea/workflows || echo ".gitea/workflows not found!"
2024-11-30 18:59:49 +00:00
2024-11-30 17:44:07 +00:00
test-qt5:
name: Test LMDBAL with qt5
2024-11-30 18:37:28 +00:00
uses: ./.gitea/workflows/test.yml
2024-11-30 17:44:07 +00:00
with:
flags: -D QT_VERSION_MAJOR=5
2024-11-30 17:46:43 +00:00
test-qt6:
2024-11-30 17:44:07 +00:00
name: Test LMDBAL with qt6
2024-11-30 18:37:28 +00:00
uses: ./.gitea/workflows/test.yml
2024-11-30 17:44:07 +00:00
with:
flags: -D QT_VERSION_MAJOR=6
docs:
name: Release documentation
2023-08-20 00:16:13 +00:00
runs-on: archlinux
2024-11-30 18:39:34 +00:00
needs: [test-qt5, test-qt6]
2023-08-19 22:31:19 +00:00
steps:
- name: Check out repository code
uses: actions/checkout@v3
2023-08-19 22:31:19 +00:00
- name: Make a build directory
run: mkdir build
2023-08-19 22:31:19 +00:00
- name: Configure
2023-08-20 01:15:34 +00:00
working-directory: ./build
2024-11-30 17:44:07 +00:00
run: cmake .. BUILD_DOC_HTML=True -D BUILD_DOC_XML=True -D BUILD_DOC_MAN=True -D BUILD_DOXYGEN_AWESOME=True
2023-08-19 22:31:19 +00:00
- name: Build
2023-08-20 01:15:34 +00:00
working-directory: ./build
run: cmake --build .
2023-08-20 14:56:39 +00:00
- name: Copy docs via scp
uses: appleboy/scp-action@master
# working-directory: ./build/doc //doesn't work
2023-08-20 14:56:39 +00:00
with:
host: ${{ secrets.DOMAIN_ROOT }}
username: ${{ secrets.DEPLOY_USER_NAME }}
key: ${{ secrets.DEPLOY_PRIVATE_KEY }}
source: "build/doc/html/*,build/doc/xml/*,build/doc/man/*"
target: "/srv/lmdbal/doc"
strip_components: 2