⚡ C++ Modules Update #9
Workflow file for this run
This file contains hidden or 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: Linux Build Tests | |
| on: [pull_request] | |
| jobs: | |
| linux-build: | |
| name: "Linux-Build" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install LLVM | |
| run: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh | |
| - name: Install LLVM's C++ Standard Library | |
| run: sudo apt install libc++-17-dev libc++abi-17-dev | |
| - name: Installing pipx | |
| run: sudo apt install pipx | |
| - name: Installing Prerequisites for Linux | |
| run: | | |
| sudo apt-get update | |
| sudo apt install software-properties-common -y | |
| sudo add-apt-repository ppa:deadsnakes/ppa | |
| - name: Installing Vulkan SDK | |
| run: | | |
| sudo apt install nvidia-driver-550 | |
| wget -qO- https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo tee /etc/apt/trusted.gpg.d/lunarg.asc | |
| sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-noble.list http://packages.lunarg.com/vulkan/lunarg-vulkan-noble.list | |
| sudo apt update | |
| sudo apt install vulkan-sdk | |
| vulkaninfo --summary | |
| - name: Installing Conan | |
| run: pipx install "conan>=2.10.1" | |
| - name: Setting up Conan Profiles | |
| run: conan config install -sf profiles/x86_64/linux/ -tf profiles https://github.com/engine3d-dev/conan-config.git | |
| - name: Installing project dependencies | |
| run: conan remote add engine3d-conan https://libhal.jfrog.io/artifactory/api/conan/engine3d-conan | |
| - name: Cloning Atlas repository | |
| run: git clone https://github.com/engine3d-dev/TheAtlasEngine | |
| - name: Building Atlas | |
| run: conan create . -b missing -pr linux_x86_64 -c tools.system.package_manager:sudo=True -c tools.system.package_manager:mode=install | |