Merge pull request #464 from pcardona34/debian12-aarch64-vm #166
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: Debian 12 | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| container: amd64/debian:12 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: APT update | |
| run: | | |
| apt-get -q -y update | |
| apt-get -y -q install sudo curl cmake clang git | |
| - name: Build core libraries | |
| run: | | |
| cd Packaging/Sources | |
| ./0_build_libdispatch.sh | |
| ./1_build_libcorefoundation.sh | |
| ./2_build_libobjc2.sh | |
| ./3_build_core.sh | |
| ./3_build_tools-make.sh | |
| ./4_build_libwraster.sh | |
| - name: Build GNUstep | |
| run: | | |
| cd Packaging/Sources | |
| ./5_build_libs-base.sh | |
| ./6_build_libs-gui.sh | |
| ./7_build_libs-back.sh | |
| - name: Build NextSpace frameworks | |
| run: | | |
| cd Packaging/Sources | |
| ./8_build_Frameworks.sh | |
| - name: Build NextSpace applications | |
| run: | | |
| cd Packaging/Sources | |
| ./9_build_Applications.sh |