Faster build by reducing time to install nasm #10
Workflow file for this run
This file contains 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 for i686 | |
on: | |
push: | |
branches: [ $default-branch ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: sudo apt-get install -y gcc-multilib | |
- uses: ilammy/setup-nasm@v1 | |
- name: Where is nasm | |
run: whereis nasm | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: configure | |
run: ./configure | |
- name: make | |
run: make | |
- name: make testapp | |
run: make testapp |