open-watcom: fix Open Watcom build make file #160
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: NASM CI/CD | |
| on: | |
| push: | |
| branches: [ "*" ] | |
| pull_request: | |
| branches: [ "*" ] | |
| jobs: | |
| build: | |
| name: Build and test | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ubuntu:24.04 | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| apt-get update && apt-get install -y automake perl python3 build-essential | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Prepare build system | |
| run: | | |
| sh autogen.sh | |
| sh configure | |
| - name: Build | |
| run: | | |
| make | |
| ./nasm --version | |
| - name: Run travis tests | |
| run: | | |
| make travis |