n3ds.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. name: Build (Nintendo 3DS)
  2. on: [push, pull_request]
  3. jobs:
  4. n3ds:
  5. runs-on: ubuntu-latest
  6. container:
  7. image: devkitpro/devkitarm:latest
  8. steps:
  9. - uses: actions/checkout@v3
  10. - name: Install build requirements
  11. run: |
  12. apt update
  13. apt install ninja-build
  14. - name: Configure CMake
  15. run: |
  16. cmake -S . -B build -G Ninja \
  17. -DCMAKE_TOOLCHAIN_FILE=${DEVKITPRO}/cmake/3DS.cmake \
  18. -DSDL_WERROR=ON \
  19. -DSDL_TESTS=ON \
  20. -DSDL_INSTALL_TESTS=ON \
  21. -DSDL_VENDOR_INFO="Github Workflow" \
  22. -DCMAKE_BUILD_TYPE=Release \
  23. -DCMAKE_INSTALL_PREFIX=prefix
  24. - name: Build
  25. run: cmake --build build --verbose
  26. - name: Install CMake
  27. run: |
  28. echo "SDL2_DIR=$(pwd)/prefix" >> $GITHUB_ENV
  29. cmake --install build/
  30. ( cd prefix; find ) | LC_ALL=C sort -u
  31. - name: Verify CMake configuration files
  32. run: |
  33. cmake -S cmake/test -B cmake_config_build -G Ninja \
  34. -DCMAKE_TOOLCHAIN_FILE=${DEVKITPRO}/cmake/3DS.cmake \
  35. -DTEST_SHARED=FALSE \
  36. -DCMAKE_PREFIX_PATH=${{ env.SDL2_DIR }} \
  37. -DCMAKE_BUILD_TYPE=Release
  38. cmake --build cmake_config_build --verbose
  39. # Not running test_pkgconfig.sh and test_sdlconfig.sh
  40. # as invoking the compiler manually is not supported