mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-27 05:55:50 +00:00
Compare commits
2 Commits
self-hoste
...
sublimator
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fd0845f9fc | ||
|
|
69e2831ca7 |
12
.github/actions/xahau-ga-build/action.yml
vendored
12
.github/actions/xahau-ga-build/action.yml
vendored
@@ -28,10 +28,6 @@ inputs:
|
|||||||
description: 'Cache version for invalidation'
|
description: 'Cache version for invalidation'
|
||||||
required: false
|
required: false
|
||||||
default: '1'
|
default: '1'
|
||||||
cache_enabled:
|
|
||||||
description: 'Whether to use cache'
|
|
||||||
required: false
|
|
||||||
default: 'true'
|
|
||||||
ccache_enabled:
|
ccache_enabled:
|
||||||
description: 'Whether to use ccache'
|
description: 'Whether to use ccache'
|
||||||
required: false
|
required: false
|
||||||
@@ -76,7 +72,7 @@ runs:
|
|||||||
echo "name=${SAFE_BRANCH}" >> $GITHUB_OUTPUT
|
echo "name=${SAFE_BRANCH}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Restore ccache directory for main branch
|
- name: Restore ccache directory for main branch
|
||||||
if: inputs.cache_enabled == 'true' && inputs.ccache_enabled == 'true'
|
if: inputs.ccache_enabled == 'true'
|
||||||
id: ccache-restore
|
id: ccache-restore
|
||||||
uses: ./.github/actions/xahau-ga-cache-restore
|
uses: ./.github/actions/xahau-ga-cache-restore
|
||||||
with:
|
with:
|
||||||
@@ -88,7 +84,7 @@ runs:
|
|||||||
cache-type: ccache-main
|
cache-type: ccache-main
|
||||||
|
|
||||||
- name: Restore ccache directory for current branch
|
- name: Restore ccache directory for current branch
|
||||||
if: inputs.cache_enabled == 'true' && inputs.ccache_enabled == 'true' && steps.safe-branch.outputs.name != inputs.main_branch
|
if: inputs.ccache_enabled == 'true' && steps.safe-branch.outputs.name != inputs.main_branch
|
||||||
id: ccache-restore-current-branch
|
id: ccache-restore-current-branch
|
||||||
uses: ./.github/actions/xahau-ga-cache-restore
|
uses: ./.github/actions/xahau-ga-cache-restore
|
||||||
with:
|
with:
|
||||||
@@ -241,14 +237,14 @@ runs:
|
|||||||
run: ccache -s
|
run: ccache -s
|
||||||
|
|
||||||
- name: Save ccache directory for main branch
|
- name: Save ccache directory for main branch
|
||||||
if: success() && inputs.cache_enabled == 'true' && inputs.ccache_enabled == 'true' && steps.safe-branch.outputs.name == inputs.main_branch
|
if: success() && inputs.ccache_enabled == 'true' && steps.safe-branch.outputs.name == inputs.main_branch
|
||||||
uses: actions/cache/save@v4
|
uses: actions/cache/save@v4
|
||||||
with:
|
with:
|
||||||
path: ~/.ccache-main
|
path: ~/.ccache-main
|
||||||
key: ${{ steps.ccache-restore.outputs.cache-primary-key }}
|
key: ${{ steps.ccache-restore.outputs.cache-primary-key }}
|
||||||
|
|
||||||
- name: Save ccache directory for current branch
|
- name: Save ccache directory for current branch
|
||||||
if: success() && inputs.cache_enabled == 'true' && inputs.ccache_enabled == 'true' && steps.safe-branch.outputs.name != inputs.main_branch
|
if: success() && inputs.ccache_enabled == 'true' && steps.safe-branch.outputs.name != inputs.main_branch
|
||||||
uses: actions/cache/save@v4
|
uses: actions/cache/save@v4
|
||||||
with:
|
with:
|
||||||
path: ~/.ccache-current
|
path: ~/.ccache-current
|
||||||
|
|||||||
@@ -79,11 +79,6 @@ runs:
|
|||||||
- name: Configure Conan
|
- name: Configure Conan
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
mkdir -p /.conan-cache/conan2 /.conan-cache/conan2_download /.conan-cache/conan2_sources
|
|
||||||
echo 'core.cache:storage_path=/.conan-cache/conan2' > ~/.conan2/global.conf
|
|
||||||
echo 'core.download:download_cache=/.conan-cache/conan2_download' >> ~/.conan2/global.conf
|
|
||||||
echo 'core.sources:download_cache=/.conan-cache/conan2_sources' >> ~/.conan2/global.conf
|
|
||||||
|
|
||||||
# Create the default profile directory if it doesn't exist
|
# Create the default profile directory if it doesn't exist
|
||||||
mkdir -p ~/.conan2/profiles
|
mkdir -p ~/.conan2/profiles
|
||||||
|
|
||||||
|
|||||||
@@ -18,11 +18,10 @@ runs:
|
|||||||
using: 'composite'
|
using: 'composite'
|
||||||
steps:
|
steps:
|
||||||
- name: Get commit message and set environment variable
|
- name: Get commit message and set environment variable
|
||||||
shell: bash
|
shell: python
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ github.token }}
|
GH_TOKEN: ${{ github.token }}
|
||||||
run: |
|
run: |
|
||||||
python3 - << 'PY'
|
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import secrets
|
import secrets
|
||||||
@@ -73,4 +72,3 @@ runs:
|
|||||||
|
|
||||||
print(f"✓ XAHAU_GA_COMMIT_MSG set (available to all subsequent steps)")
|
print(f"✓ XAHAU_GA_COMMIT_MSG set (available to all subsequent steps)")
|
||||||
print("==========================================")
|
print("==========================================")
|
||||||
PY
|
|
||||||
|
|||||||
6
.github/workflows/build-in-docker.yml
vendored
6
.github/workflows/build-in-docker.yml
vendored
@@ -33,7 +33,7 @@ jobs:
|
|||||||
fetch-depth: 2 # Only get the last 2 commits, to avoid fetching all history
|
fetch-depth: 2 # Only get the last 2 commits, to avoid fetching all history
|
||||||
|
|
||||||
build:
|
build:
|
||||||
runs-on: [self-hosted, xahaud-build]
|
runs-on: [self-hosted, vanity]
|
||||||
needs: [checkout]
|
needs: [checkout]
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
@@ -74,7 +74,7 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
tests:
|
tests:
|
||||||
runs-on: [self-hosted, xahaud-build]
|
runs-on: [self-hosted, vanity]
|
||||||
needs: [build, checkout]
|
needs: [build, checkout]
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
@@ -84,7 +84,7 @@ jobs:
|
|||||||
run: /bin/bash docker-unit-tests.sh
|
run: /bin/bash docker-unit-tests.sh
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
runs-on: [self-hosted, xahaud-build]
|
runs-on: [self-hosted, vanity]
|
||||||
needs: [tests, checkout]
|
needs: [tests, checkout]
|
||||||
if: always()
|
if: always()
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
48
.github/workflows/xahau-ga-nix.yml
vendored
48
.github/workflows/xahau-ga-nix.yml
vendored
@@ -14,7 +14,7 @@ concurrency:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
matrix-setup:
|
matrix-setup:
|
||||||
runs-on: [self-hosted, generic, 24.04]
|
runs-on: ubuntu-latest
|
||||||
container: python:3-slim
|
container: python:3-slim
|
||||||
outputs:
|
outputs:
|
||||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
||||||
@@ -176,19 +176,7 @@ jobs:
|
|||||||
|
|
||||||
build:
|
build:
|
||||||
needs: matrix-setup
|
needs: matrix-setup
|
||||||
runs-on: [self-hosted, generic, 24.04]
|
runs-on: ubuntu-latest
|
||||||
container:
|
|
||||||
image: ubuntu:24.04
|
|
||||||
volumes:
|
|
||||||
- /home/runner/.conan-cache:/.conan-cache
|
|
||||||
- /home/runner/.ccache-main:/github/home/.ccache-main
|
|
||||||
- /home/runner/.ccache-current:/github/home/.ccache-current
|
|
||||||
options: >-
|
|
||||||
--privileged
|
|
||||||
--name xahaud-ci-${{ matrix.compiler_id }}
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
shell: bash
|
|
||||||
outputs:
|
outputs:
|
||||||
artifact_name: ${{ steps.set-artifact-name.outputs.artifact_name }}
|
artifact_name: ${{ steps.set-artifact-name.outputs.artifact_name }}
|
||||||
strategy:
|
strategy:
|
||||||
@@ -202,17 +190,6 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install python if not installed
|
|
||||||
run: |
|
|
||||||
if ! which python3 > /dev/null 2>&1; then
|
|
||||||
apt-get update
|
|
||||||
apt-get install -y python3 python-is-python3
|
|
||||||
fi
|
|
||||||
if ! which pipx > /dev/null 2>&1; then
|
|
||||||
apt-get install -y pipx
|
|
||||||
pipx ensurepath
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Get commit message
|
- name: Get commit message
|
||||||
id: get-commit-message
|
id: get-commit-message
|
||||||
@@ -224,18 +201,13 @@ jobs:
|
|||||||
|
|
||||||
- name: Install build dependencies
|
- name: Install build dependencies
|
||||||
run: |
|
run: |
|
||||||
apt-get update
|
sudo apt-get update
|
||||||
apt-get install -y software-properties-common
|
sudo apt-get install -y ninja-build ${{ matrix.cc }} ${{ matrix.cxx }} ccache
|
||||||
add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
|
||||||
apt update
|
|
||||||
apt-get install -y cmake ninja-build ${{ matrix.cc }} ${{ matrix.cxx }} ccache
|
|
||||||
apt-get install -y perl # for openssl build
|
|
||||||
apt-get install -y libsqlite3-dev # for xahaud build
|
|
||||||
|
|
||||||
# Install the specific GCC version needed for Clang
|
# Install the specific GCC version needed for Clang
|
||||||
if [ -n "${{ matrix.clang_gcc_toolchain }}" ]; then
|
if [ -n "${{ matrix.clang_gcc_toolchain }}" ]; then
|
||||||
echo "=== Installing GCC ${{ matrix.clang_gcc_toolchain }} for Clang ==="
|
echo "=== Installing GCC ${{ matrix.clang_gcc_toolchain }} for Clang ==="
|
||||||
apt-get install -y gcc-${{ matrix.clang_gcc_toolchain }} g++-${{ matrix.clang_gcc_toolchain }} libstdc++-${{ matrix.clang_gcc_toolchain }}-dev
|
sudo apt-get install -y gcc-${{ matrix.clang_gcc_toolchain }} g++-${{ matrix.clang_gcc_toolchain }} libstdc++-${{ matrix.clang_gcc_toolchain }}-dev
|
||||||
|
|
||||||
echo "=== GCC versions available after installation ==="
|
echo "=== GCC versions available after installation ==="
|
||||||
ls -la /usr/lib/gcc/x86_64-linux-gnu/ | grep -E "^d"
|
ls -la /usr/lib/gcc/x86_64-linux-gnu/ | grep -E "^d"
|
||||||
@@ -266,7 +238,7 @@ jobs:
|
|||||||
echo "Hiding GCC $version -> renaming to $counter (will be seen as GCC version $counter)"
|
echo "Hiding GCC $version -> renaming to $counter (will be seen as GCC version $counter)"
|
||||||
# Safety check: ensure target doesn't already exist
|
# Safety check: ensure target doesn't already exist
|
||||||
if [ ! -e "/usr/lib/gcc/x86_64-linux-gnu/$counter" ]; then
|
if [ ! -e "/usr/lib/gcc/x86_64-linux-gnu/$counter" ]; then
|
||||||
mv "$dir" "/usr/lib/gcc/x86_64-linux-gnu/$counter"
|
sudo mv "$dir" "/usr/lib/gcc/x86_64-linux-gnu/$counter"
|
||||||
else
|
else
|
||||||
echo "ERROR: Cannot rename GCC $version - /usr/lib/gcc/x86_64-linux-gnu/$counter already exists"
|
echo "ERROR: Cannot rename GCC $version - /usr/lib/gcc/x86_64-linux-gnu/$counter already exists"
|
||||||
exit 1
|
exit 1
|
||||||
@@ -290,12 +262,11 @@ jobs:
|
|||||||
|
|
||||||
# Install libc++ dev packages if using libc++ (not needed for libstdc++)
|
# Install libc++ dev packages if using libc++ (not needed for libstdc++)
|
||||||
if [ "${{ matrix.stdlib }}" = "libcxx" ]; then
|
if [ "${{ matrix.stdlib }}" = "libcxx" ]; then
|
||||||
apt-get install -y libc++-${{ matrix.compiler_version }}-dev libc++abi-${{ matrix.compiler_version }}-dev
|
sudo apt-get install -y libc++-${{ matrix.compiler_version }}-dev libc++abi-${{ matrix.compiler_version }}-dev
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Install Conan 2
|
# Install Conan 2
|
||||||
pipx install "conan>=2.0,<3"
|
pip install --upgrade "conan>=2.0,<3"
|
||||||
echo "$HOME/.local/bin" >> $GITHUB_PATH
|
|
||||||
|
|
||||||
- name: Check environment
|
- name: Check environment
|
||||||
run: |
|
run: |
|
||||||
@@ -322,7 +293,6 @@ jobs:
|
|||||||
cc: ${{ matrix.cc }}
|
cc: ${{ matrix.cc }}
|
||||||
cxx: ${{ matrix.cxx }}
|
cxx: ${{ matrix.cxx }}
|
||||||
stdlib: ${{ matrix.stdlib }}
|
stdlib: ${{ matrix.stdlib }}
|
||||||
cache_enabled: 'false' # Disable caching for self hosted runner
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
uses: ./.github/actions/xahau-ga-build
|
uses: ./.github/actions/xahau-ga-build
|
||||||
@@ -337,8 +307,6 @@ jobs:
|
|||||||
main_branch: ${{ env.MAIN_BRANCH_NAME }}
|
main_branch: ${{ env.MAIN_BRANCH_NAME }}
|
||||||
stdlib: ${{ matrix.stdlib }}
|
stdlib: ${{ matrix.stdlib }}
|
||||||
clang_gcc_toolchain: ${{ matrix.clang_gcc_toolchain || '' }}
|
clang_gcc_toolchain: ${{ matrix.clang_gcc_toolchain || '' }}
|
||||||
cache_enabled: 'false' # Disable caching for self hosted runner
|
|
||||||
ccache_max_size: '100G'
|
|
||||||
|
|
||||||
- name: Set artifact name
|
- name: Set artifact name
|
||||||
id: set-artifact-name
|
id: set-artifact-name
|
||||||
|
|||||||
Reference in New Issue
Block a user