mirror of
https://github.com/neovim/neovim.git
synced 2026-09-05 13:40:57 +00:00
Bumps the github-actions group with 3 updates in the / directory: [github/codeql-action](https://github.com/github/codeql-action), [vmactions/freebsd-vm](https://github.com/vmactions/freebsd-vm) and [vmactions/openbsd-vm](https://github.com/vmactions/openbsd-vm). Updates `github/codeql-action` from 4.37.8 to 4.37.9 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v4.37.8...v4.37.9) Updates `vmactions/freebsd-vm` from 1.5.4 to 1.5.5 - [Release notes](https://github.com/vmactions/freebsd-vm/releases) - [Commits](d0518f9125...f0552d3b69) Updates `vmactions/openbsd-vm` from 1.4.6 to 1.4.7 - [Release notes](https://github.com/vmactions/openbsd-vm/releases) - [Commits](e6c68b637a...86cdc08415) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 4.37.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: vmactions/freebsd-vm dependency-version: 1.5.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: vmactions/openbsd-vm dependency-version: 1.4.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
65 lines
1.5 KiB
YAML
65 lines
1.5 KiB
YAML
name: test-bsd
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
- 'release-[0-9]+.[0-9]+'
|
|
pull_request:
|
|
branches:
|
|
- 'master'
|
|
- 'release-[0-9]+.[0-9]+'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
|
|
jobs:
|
|
freebsd:
|
|
name: FreeBSD
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 90
|
|
steps:
|
|
- uses: actions/checkout@v7.0.1
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Build
|
|
uses: vmactions/freebsd-vm@f0552d3b69211736abd97f02ff3d4674c56b73b1 # v1.5.5
|
|
with:
|
|
usesh: true
|
|
cache-after-prepare: true
|
|
prepare: |
|
|
pkg install -y cmake gmake ninja unzip wget gettext python git
|
|
run: |
|
|
set -e
|
|
gmake deps
|
|
gmake CMAKE_EXTRA_FLAGS="-DCI_BUILD=ON" nvim
|
|
./build/bin/nvim --version
|
|
|
|
openbsd:
|
|
name: OpenBSD
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 90
|
|
steps:
|
|
- uses: actions/checkout@v7.0.1
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Build
|
|
uses: vmactions/openbsd-vm@86cdc08415d9d0865267e686561e276c52d62530 # v1.4.7
|
|
with:
|
|
usesh: true
|
|
cache-after-prepare: true
|
|
prepare: |
|
|
pkg_add -I cmake gmake ninja gettext-tools gettext-runtime git
|
|
run: |
|
|
set -e
|
|
gmake deps
|
|
gmake CMAKE_EXTRA_FLAGS="-DCI_BUILD=ON" nvim
|
|
./build/bin/nvim --version
|