replace cmake by meson #163
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: snapshot | |
on: [push] | |
jobs: | |
snapshot: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v4 | |
- name: Install deps | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y build-essential cmake meson lua5.3 xorg-dev libgl1-mesa-dev mingw-w64 curl zip | |
- name: Build linux snapshot | |
run: | | |
./snapshot.sh | |
- name: Build win32 snapshot | |
run: | | |
./snapshot.sh win32 | |
- name: Build win64 snapshot | |
run: | | |
./snapshot.sh win64 | |
- name: Upload snapshots | |
env: | |
SECRET: ${{ secrets.ELIDRAGON_UPLOAD_TOKEN }} | |
run: | | |
./upload.sh |