Update main.yml #8
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: Linux Build | |
on: push | |
jobs: | |
build: | |
name: Build on Ubuntu | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
ref: f7bb59d9f51cc10b25ff86d34a3eff744e60c46e | |
- name: Install dependencies | |
run: | | |
sudo apt-get install git g++ make libtool automake autopoint pkg-config flex bison lua5.2 | |
sudo apt-get install subversion yasm cvs cmake ragel ninja-build meson liblua5.2-dev | |
- name: Run build | |
run: | | |
./bootstrap | |
./configure | |
make |