Workspace: fixed "Tools->Dock" menu items title and state. #431
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: Ubuntu 22.04 | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: APT update | |
| run: sudo apt-get -q -y update | |
| - 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 |