Merge pull request #690 from GTD-Carthage/v21-content-unstable #1004
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: CMake | |
| on: | |
| push: | |
| branches: [ v21 ] | |
| pull_request: | |
| branches: [ v21 ] | |
| env: | |
| # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
| BUILD_TYPE: Release | |
| # The number of days to retain artifacts | |
| RETENTION_DAYS: 30 | |
| jobs: | |
| build-win32: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y mingw-w64 | |
| - name: Configure CMake | |
| run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_TOOLCHAIN_FILE=Toolchain-mingw32.cmake | |
| - name: Build | |
| # Build your program with the given configuration | |
| run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: obsidian-win32 | |
| path: | | |
| ${{github.workspace}}/addons | |
| ${{github.workspace}}/data | |
| ${{github.workspace}}/engines | |
| ${{github.workspace}}/games | |
| ${{github.workspace}}/language | |
| ${{github.workspace}}/modules | |
| ${{github.workspace}}/ports | |
| ${{github.workspace}}/presets | |
| ${{github.workspace}}/scripts | |
| ${{github.workspace}}/theme | |
| ${{github.workspace}}/tools | |
| ${{github.workspace}}/obsidian.exe | |
| retention-days: ${{env.RETENTION_DAYS}} | |
| build-linux: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libxft-dev libfontconfig1-dev libgl-dev libfltk1.3-dev | |
| - name: Configure CMake Ubuntu | |
| run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | |
| - name: Build Ubuntu | |
| run: cmake --build build --config ${{env.BUILD_TYPE}} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: obsidian-ubuntu | |
| path: | | |
| addons | |
| data | |
| engines | |
| games | |
| language | |
| modules | |
| ports | |
| presets | |
| scripts | |
| theme | |
| tools | |
| obsidian | |
| retention-days: ${{env.RETENTION_DAYS}} |