fix tag for lua action, executable package.lua, missing linux deps #2
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 | |
on: | |
workflow_dispatch: | |
push: | |
branches: [add-github-actions] | |
paths-ignore: | |
- "**.md" | |
- "**.txt" | |
- ".gitignore" | |
pull_request: | |
branches: [add-github-actions] | |
paths-ignore: | |
- "**.md" | |
- "**.txt" | |
- ".gitignore" | |
release: | |
types: [published] | |
jobs: | |
msvc: | |
name: Windows ${{ matrix.arch }} ${{ matrix.build_type }} | |
runs-on: windows-2022 | |
strategy: | |
matrix: | |
arch: [x86, x86_64] | |
build_type: [Debug, Release] | |
include: | |
- arch: x86 | |
platform: Win32 | |
- arch: x86_64 | |
platform: x64 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: leafo/gh-actions-lua@v10 | |
with: | |
luaVersion: 5.4 | |
# waiting for https://github.com/leafo/gh-actions-luarocks/pull/14 to be merged | |
# - uses: leafo/gh-actions-luarocks@v4 | |
- name: Install Luarocks | |
working-directory: ${{ github.workspace }} | |
shell: pwsh | |
run: | | |
wget "http://luarocks.github.io/luarocks/releases/luarocks-3.9.2-windows-64.zip" -o luarocks.zip | |
Expand-Archive .\luarocks.zip . | |
cd .\luarocks\luarocks-3.9.2-windows-64\ | |
.\luarocks.exe config variables.LUA_DIR ${{ github.workspace }}/.lua/ | |
.\luarocks.exe config variables.LUA_INCDIR ${{ github.workspace }}/.lua/include | |
.\luarocks.exe config variables.LUA_LIBDIR ${{ github.workspace }}/.lua/ | |
.\luarocks.exe install luafilesystem | |
# - name: Install Lua | |
# working-directory: ${{ github.workspace }} | |
# run: winget install "lua for windows" --accept-source-agreements | |
# - name: Install Lua + Luarocks | |
# working-directory: ${{ github.workspace }} | |
# run: | | |
# wget "http://luarocks.github.io/luarocks/releases/luarocks-3.9.2-win32.zip" -o luarocks.zip | |
# Expand-Archive .\luarocks.zip . | |
# cd .\luarocks\luarocks-3.9.2-win32\ | |
# .\win32\lua5.1\bin\lua5.1.exe .\install.bat /L /NOADMIN /P ..\lr-install | |
- name: Prepare environment | |
uses: microsoft/[email protected] | |
- name: Build | |
working-directory: ${{ github.workspace }} | |
shell: bash | |
run: | | |
if [ ${{ matrix.arch }} == "x86" ]; then | |
export FORCE32=1 | |
fi | |
./build.sh ${{ matrix.build_type }} | |
- name: Package | |
if: ${{ matrix.build_type == 'Release' }} | |
working-directory: ${{ github.workspace }} | |
shell: cmd | |
run: | | |
lua package.lua | |
7z a -tzip -y japp-windows-${{ matrix.arch }}-${{ matrix.build_type }}.zip *.pk3 | |
- uses: actions/upload-artifact@v3 | |
if: ${{ matrix.build_type == 'Release' }} | |
with: | |
name: japp-windows-${{ matrix.arch }}-${{ matrix.build_type }} | |
path: ${{ github.workspace }} | |
if-no-files-found: error | |
ubuntu: | |
name: Ubuntu ${{ matrix.arch }} ${{ matrix.build_type }} | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
arch: [x86, x86_64] | |
build_type: [Debug, Release] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare environment | |
run: | | |
if [ ${{ matrix.arch }} == "x86" ]; then | |
sudo dpkg --add-architecture i386 | |
sudo apt-get -qq update | |
sudo apt-get -y install gcc-multilib g++-multilib | |
else | |
sudo apt-get -qq update | |
fi | |
sudo apt-get -y install scons lua5.4 lua-filesystem libgtk2.0-dev libnotify-dev | |
- name: Build | |
working-directory: ${{ github.workspace }} | |
shell: bash | |
run: | | |
if [ ${{ matrix.arch }} == "x86" ]; then | |
export FORCE32=1 | |
fi | |
./build.sh ${{ matrix.build_type }} | |
- name: Package | |
if: ${{ matrix.build_type == 'Release' }} | |
working-directory: ${{ github.workspace }} | |
shell: bash | |
run: | | |
./package.lua | |
tar -czvf japp-linux-${{ matrix.arch }}-${{ matrix.build_type }}.tar.gz *.zip | |
- uses: actions/upload-artifact@v3 | |
if: ${{ matrix.build_type == 'Release' }} | |
with: | |
name: japp-linux-${{ matrix.arch }}-${{ matrix.build_type }} | |
path: ${{github.workspace}}/japp-linux-${{ matrix.arch }}-${{ matrix.build_type }}.tar.gz | |
if-no-files-found: error | |
macos: | |
name: macOS ${{ matrix.arch }} ${{ matrix.build_type }} | |
runs-on: macos-12 | |
strategy: | |
fail-fast: false | |
matrix: | |
arch: [x86_64] | |
build_type: [Debug, Release] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare environment | |
run: | | |
brew install scons lua luarocks | |
luarocks install luafilesystem | |
- name: Build | |
working-directory: ${{ github.workspace }} | |
shell: bash | |
run: CC=clang CXX=clang++ ./build.sh ${{ matrix.build_type }} | |
- name: Package | |
if: ${{ matrix.build_type == 'Release' }} | |
working-directory: ${{ github.workspace }} | |
shell: bash | |
run: | | |
./package.lua | |
tar -czvf japp-macos-${{ matrix.arch }}-${{ matrix.build_type }}.tar.gz *.zip | |
- uses: actions/upload-artifact@v3 | |
if: ${{ matrix.build_type == 'Release' }} | |
with: | |
name: japp-macos-${{ matrix.arch }}-${{ matrix.build_type }} | |
path: ${{ github.workspace }}/japp-macos-${{ matrix.arch }}-${{ matrix.build_type }}.tar.gz | |
if-no-files-found: error | |
create-latest: | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
needs: [msvc, ubuntu, macos] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Download Artifacts | |
uses: actions/download-artifact@v3 | |
- name: Create binary archives | |
run: | | |
7z a -r japp-windows-x86.zip ./japp-windows-x86-Release/* '-x!msvcp*.*' '-x!vcruntime*.*' '-x!concrt*.*' | |
7z a -r japp-windows-x86_64.zip ./japp-windows-x86_64-Release/* '-x!msvcp*.*' '-x!vcruntime*.*' '-x!concrt*.*' | |
mv ./japp-linux-x86-Release/* japp-linux-x86.tar.gz | |
mv ./japp-linux-x86_64-Release/* japp-linux-x86_64.tar.gz | |
mv ./japp-macos-x86_64-Release/* japp-macos-x86_64.tar.gz | |
- name: Create latest build | |
uses: marvinpinto/action-automatic-releases@latest | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
automatic_release_tag: "latest" | |
prerelease: false | |
title: Latest Build | |
files: | | |
*.zip | |
*.tar.gz | |
create-release: | |
if: github.event_name == 'release' | |
needs: [msvc, ubuntu, macos] | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
include: | |
- artifact_dir: japp-windows-x86-Release | |
artifact_name: japp-windows-x86.zip | |
zip: true | |
- artifact_dir: japp-windows-x86_64-Release | |
artifact_name: japp-windows-x86_64.zip | |
zip: true | |
- artifact_dir: japp-linux-x86-Release | |
artifact_name: japp-linux-x86.tar.gz | |
zip: false | |
- artifact_dir: japp-linux-x86_64-Release | |
artifact_name: japp-linux-x86_64.tar.gz | |
zip: false | |
- artifact_dir: japp-macos-x86_64-Release | |
artifact_name: japp-macos-x86_64.tar.gz | |
zip: false | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Download Artifacts | |
uses: actions/download-artifact@v3 | |
- name: Create archive | |
run: | | |
if [ "${{ matrix.zip }}" == "true" ]; then | |
7z a -r ${{ matrix.artifact_name }} ./${{ matrix.artifact_dir }}/* '-x!msvcp*.*' '-x!vcruntime*.*' '-x!concrt*.*' | |
else | |
mv ./${{ matrix.artifact_dir }}/* ${{ matrix.artifact_name }} | |
fi | |
- name: Upload archives | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ github.ref }} | |
overwrite: true | |
file: ${{ matrix.artifact_name }} |