Skip to content

fixing windows build #103

fixing windows build

fixing windows build #103

Workflow file for this run

name: ubuntu-24.04
on:
push:
branches: [main, master, develop] # Trigger on pushes to main branches
tags:
- v*.*.* # Also trigger on version tags for releases
pull_request:
branches: [main, master] # Also trigger on PRs to main branches
jobs:
build:
runs-on: ubuntu-24.04
steps:
# Step 1: Checkout the repository
- uses: actions/checkout@v4
name: Checkout the repository
# Step 2: Build the Docker image
- name: Build the Docker image
run: docker build . --file Dockerfile --tag mycpp_image:latest
# Step 2.5: Verify Docker image and cmake availability
- name: Verify Docker image
run: |
docker run --rm mycpp_image:latest which cmake
docker run --rm mycpp_image:latest which ninja
docker run --rm mycpp_image:latest cmake --version
docker run --rm mycpp_image:latest ninja --version
# Step 3: Configure CMake
- name: Configure CMake
run: docker run --rm -v ${{ github.workspace }}:/cpp_tutorials mycpp_image:latest cmake -S /cpp_tutorials -G "Ninja Multi-Config" -B /cpp_tutorials/build
# Step 4: Build with CMake
- name: Build with CMake
run: docker run --rm -v ${{ github.workspace }}:/cpp_tutorials mycpp_image:latest cmake --build /cpp_tutorials/build --config Release
# Step 5: Verify if build files are generated
- name: List build directory contents
run: docker run --rm -v ${{ github.workspace }}:/cpp_tutorials mycpp_image:latest ls -la /cpp_tutorials/build
# Step 6: Generate Doxygen documentation
- name: Generate Doxygen documentation
run: docker run --rm -v ${{ github.workspace }}:/cpp_tutorials mycpp_image:latest doxygen /cpp_tutorials/Doxyfile
# Step 7: Verify if documentation files are generated
- name: List documentation directory contents
run: docker run --rm -v ${{ github.workspace }}:/cpp_tutorials mycpp_image:latest ls -la /cpp_tutorials/docs
# Step 8: Upload documentation as an artifact (if files exist)
- name: Upload documentation
uses: actions/upload-artifact@v4
with:
name: cpp_documentation
path: /cpp_tutorials/docs
# Step 9: Upload build artifacts as an artifact (if files exist)
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: cpp_build_output
path: /cpp_tutorials/build
release:
needs: build
runs-on: ubuntu-24.04
if: startsWith(github.ref, 'refs/tags/') # Only run on tag pushes
steps:
# Step 1: Checkout the repository
- uses: actions/checkout@v4
name: Checkout the repository
# Step 2: Create a GitHub release using the version tag (e.g., v1.0.0, v1.0.1)
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref_name }} # Use just the tag name (e.g., v1.0.0)
release_name: Release ${{ github.ref_name }} # Name the release after the tag (e.g., v1.0.0)
body: |
Release notes for version ${{ github.ref_name }}.
draft: false
prerelease: false
# Step 3: Upload build artifacts to release
- name: Upload build artifacts to release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: /cpp_tutorials/build/Release/main # Adjust to your actual file
asset_name: main # Adjust this to name the artifact file
asset_content_type: application/octet-stream
# Step 4: Upload documentation to release
- name: Upload documentation to release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: /cpp_tutorials/docs
asset_name: cpp_documentation
asset_content_type: application/zip