Update wget lwtools #2
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: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - '*' | |
| pull_request: | |
| branches: | |
| - main | |
| - '*' | |
| env: | |
| # Path to the solution file relative to the root of the project. | |
| SOLUTION_FILE_PATH: . | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| shell: bash {0} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Requirements | |
| run: | | |
| sudo apt-get install mingw-w64 | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Fetch Toolshed | |
| uses: robinraju/release-downloader@v1 | |
| with: | |
| repository: nitros9project/toolshed | |
| fileName: toolshed-unix*.tgz | |
| latest: true | |
| extract: false | |
| out-file-path: toolshed | |
| - name: Install Toolshed | |
| run: | | |
| sudo tar xvf toolshed/toolshed-unix*.tgz --strip-components=1 -C /usr/local/bin | |
| - name: Install Lwtools | |
| run: | | |
| mkdir -p lwtools | |
| cd lwtools | |
| wget www.lwtools.ca/releases/lwtools/lwtools-4.24.tar.gz | |
| tar xvf lwtools-4.24.tar.gz | |
| cd lwtools-4.24/ | |
| sudo make install | |
| - name: Build NitrOS9 | |
| run: | | |
| export NITROS9DIR=`pwd` | |
| sudo make | |
| sudo make dsk | |