2022-11-29 22:40:13 +08:00
|
|
|
name: CI
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
2022-12-20 15:56:59 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
# os: [ubuntu-latest, windows-latest]
|
|
|
|
os: [ubuntu-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2022-11-29 22:40:13 +08:00
|
|
|
steps:
|
2024-06-07 22:28:52 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-11-29 22:40:13 +08:00
|
|
|
- name: Install Neovim
|
2022-12-20 15:56:59 +08:00
|
|
|
shell: bash
|
2022-11-29 22:40:13 +08:00
|
|
|
run: |
|
2023-03-20 03:57:12 +08:00
|
|
|
mkdir -p /tmp/nvim
|
|
|
|
wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage -O /tmp/nvim/nvim.appimage
|
|
|
|
cd /tmp/nvim
|
|
|
|
chmod a+x ./nvim.appimage
|
|
|
|
./nvim.appimage --appimage-extract
|
|
|
|
echo "/tmp/nvim/squashfs-root/usr/bin/" >> $GITHUB_PATH
|
2022-11-29 22:40:13 +08:00
|
|
|
- name: Run Tests
|
|
|
|
run: |
|
|
|
|
nvim --version
|
2023-01-05 03:23:36 +08:00
|
|
|
[ ! -d tests ] && exit 0
|
2024-06-26 20:35:29 +08:00
|
|
|
nvim -l tests/busted.lua tests -o utfTerminal
|
2024-06-25 23:41:14 +08:00
|
|
|
community:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Install Neovim
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
mkdir -p /tmp/nvim
|
|
|
|
wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage -O /tmp/nvim/nvim.appimage
|
|
|
|
cd /tmp/nvim
|
|
|
|
chmod a+x ./nvim.appimage
|
|
|
|
./nvim.appimage --appimage-extract
|
|
|
|
echo "/tmp/nvim/squashfs-root/usr/bin/" >> $GITHUB_PATH
|
|
|
|
- name: Rockspec Build
|
|
|
|
id: rockspec-build
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: build
|
|
|
|
key: rockspec-build
|
|
|
|
- name: Generate Rockspec
|
|
|
|
if: steps.rockspec-build.cache-hit != 'true'
|
|
|
|
run: |
|
|
|
|
nvim -l lua/lazy/build.lua
|
|
|
|
- name: Push changes
|
|
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
|
|
with:
|
|
|
|
commit_message: "chore(build): auto-generate rockspec mappings"
|
|
|
|
commit_user_name: "github-actions[bot]"
|
|
|
|
commit_user_email: "github-actions[bot]@users.noreply.github.com"
|
|
|
|
commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"
|
2022-11-29 22:40:13 +08:00
|
|
|
release:
|
|
|
|
name: release
|
|
|
|
if: ${{ github.ref == 'refs/heads/main' }}
|
|
|
|
needs:
|
|
|
|
- tests
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-06-07 22:31:18 +08:00
|
|
|
- uses: googleapis/release-please-action@v4
|
2022-12-30 06:26:27 +08:00
|
|
|
id: release
|
2022-11-29 22:40:13 +08:00
|
|
|
with:
|
2024-06-23 12:59:54 +08:00
|
|
|
config-file: .github/release-please-config.json
|
|
|
|
manifest-file: .github/.release-please-manifest.json
|
2024-06-07 22:28:52 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-30 05:58:10 +08:00
|
|
|
- name: tag stable versions
|
2022-12-30 06:26:27 +08:00
|
|
|
if: ${{ steps.release.outputs.release_created }}
|
2022-12-30 05:58:10 +08:00
|
|
|
run: |
|
|
|
|
git config user.name github-actions[bot]
|
|
|
|
git config user.email github-actions[bot]@users.noreply.github.com
|
|
|
|
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git"
|
|
|
|
git tag -d stable || true
|
|
|
|
git push origin :stable || true
|
|
|
|
git tag -a stable -m "Last Stable Release"
|
|
|
|
git push origin stable
|