171 lines
5.2 KiB
YAML
171 lines
5.2 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build_linux:
|
|
name: Linux
|
|
runs-on: ubuntu-22.04
|
|
strategy:
|
|
matrix:
|
|
config:
|
|
- { name: "GCC", cc: gcc, cxx: g++ }
|
|
- { name: "clang", cc: clang, cxx: clang++ }
|
|
env:
|
|
CC: ${{ matrix.config.cc }}
|
|
CXX: ${{ matrix.config.cxx }}
|
|
steps:
|
|
- name: Set Environment Variables
|
|
if: ${{ matrix.config.cc == 'gcc' }}
|
|
run: |
|
|
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
|
|
echo "INSTALL_REF=${GITHUB_REF##*/}" >> "$GITHUB_ENV"
|
|
echo "INSTALL_NAME=lite-xl-${GITHUB_REF##*/}-linux-$(uname -m)-portable" >> "$GITHUB_ENV"
|
|
- uses: actions/checkout@v2
|
|
- name: Python Setup
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.9
|
|
- name: Update Packages
|
|
run: sudo apt-get update
|
|
- name: Install Dependencies
|
|
run: bash scripts/install-dependencies.sh --debug
|
|
- name: Build
|
|
run: |
|
|
bash --version
|
|
bash scripts/build.sh --debug --forcefallback --portable
|
|
- name: Package
|
|
if: ${{ matrix.config.cc == 'gcc' }}
|
|
run: bash scripts/package.sh --version ${INSTALL_REF} --debug --binary
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@v2
|
|
if: ${{ matrix.config.cc == 'gcc' }}
|
|
with:
|
|
name: Linux Artifacts
|
|
path: ${{ env.INSTALL_NAME }}.tar.gz
|
|
|
|
build_macos:
|
|
name: macOS (x86_64)
|
|
runs-on: macos-11
|
|
env:
|
|
CC: clang
|
|
CXX: clang++
|
|
steps:
|
|
- name: System Information
|
|
run: |
|
|
system_profiler SPSoftwareDataType
|
|
bash --version
|
|
gcc -v
|
|
xcodebuild -version
|
|
- name: Set Environment Variables
|
|
run: |
|
|
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
|
|
echo "INSTALL_REF=${GITHUB_REF##*/}" >> "$GITHUB_ENV"
|
|
echo "INSTALL_NAME=lite-xl-${GITHUB_REF##*/}-macos-$(uname -m)" >> "$GITHUB_ENV"
|
|
- uses: actions/checkout@v2
|
|
- name: Python Setup
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.9
|
|
- name: Install Dependencies
|
|
run: bash scripts/install-dependencies.sh --debug
|
|
- name: Build
|
|
run: |
|
|
bash --version
|
|
bash scripts/build.sh --bundle --debug --forcefallback
|
|
- name: Create DMG Image
|
|
run: bash scripts/package.sh --version ${INSTALL_REF} --debug --dmg
|
|
- name: Upload DMG Image
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: macOS DMG Image
|
|
path: ${{ env.INSTALL_NAME }}.dmg
|
|
|
|
build_windows_msys2:
|
|
name: Windows
|
|
runs-on: windows-2019
|
|
strategy:
|
|
matrix:
|
|
msystem: [MINGW32, MINGW64]
|
|
defaults:
|
|
run:
|
|
shell: msys2 {0}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: msys2/setup-msys2@v2
|
|
with:
|
|
msystem: ${{ matrix.msystem }}
|
|
update: true
|
|
install: >-
|
|
base-devel
|
|
git
|
|
zip
|
|
- name: Set Environment Variables
|
|
run: |
|
|
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
|
|
echo "INSTALL_REF=${GITHUB_REF##*/}" >> "$GITHUB_ENV"
|
|
if [[ "${MSYSTEM}" == "MINGW64" ]]; then
|
|
echo "INSTALL_NAME=lite-xl-${GITHUB_REF##*/}-windows-x86_64" >> "$GITHUB_ENV"
|
|
else
|
|
echo "INSTALL_NAME=lite-xl-${GITHUB_REF##*/}-windows-i686" >> "$GITHUB_ENV"
|
|
fi
|
|
- name: Install Dependencies
|
|
run: bash scripts/install-dependencies.sh --debug
|
|
- name: Build
|
|
run: |
|
|
bash --version
|
|
bash scripts/build.sh -U --debug --forcefallback
|
|
- name: Package
|
|
run: bash scripts/package.sh --version ${INSTALL_REF} --debug --binary
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Windows Artifacts
|
|
path: ${{ env.INSTALL_NAME }}.zip
|
|
|
|
build_windows_msvc:
|
|
name: Windows (MSVC)
|
|
runs-on: windows-2019
|
|
strategy:
|
|
matrix:
|
|
arch: [amd64, amd64_x86]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
with:
|
|
arch: ${{ matrix.arch }}
|
|
- uses: actions/setup-python@v1
|
|
with:
|
|
python-version: '3.x'
|
|
- name: Install meson and ninja
|
|
run: pip install meson ninja
|
|
- name: Set up environment variables
|
|
run: |
|
|
"INSTALL_NAME=lite-xl-$($env:GITHUB_REF -replace ".*/")-windows-msvc-${{ matrix.arch }}" >> $env:GITHUB_ENV
|
|
"INSTALL_REF=$($env:GITHUB_REF -replace ".*/")" >> $env:GITHUB_ENV
|
|
"LUA_SUBPROJECT_PATH=subprojects/lua-5.4.4" >> $env:GITHUB_ENV
|
|
- name: Configure
|
|
run: |
|
|
meson setup --wrap-mode=forcefallback build
|
|
Get-Content -Path resources/windows/001-lua-unicode.diff -Raw | patch -d $env:LUA_SUBPROJECT_PATH -p1 --forward
|
|
- name: Build
|
|
run: meson install -C build --destdir="../lite-xl"
|
|
- name: Package
|
|
run: |
|
|
Remove-Item -Recurse -Force -Path "lite-xl/lib","lite-xl/include"
|
|
Compress-Archive -Path lite-xl -DestinationPath "$env:INSTALL_NAME.zip"
|
|
- name: Upload Artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Windows Artifacts (MSVC)
|
|
path: ${{ env.INSTALL_NAME }}.zip
|