mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
71 lines
2 KiB
YAML
71 lines
2 KiB
YAML
name: native backend CI
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '!**'
|
|
- '!**.md'
|
|
- 'vlib/v/gen/native/'
|
|
- 'cmd/tools/builders/**.v'
|
|
- 'vlib/builtin/**.v'
|
|
- 'vlib/v/ast/**.v'
|
|
- 'vlib/v/scanner/**.v'
|
|
- 'vlib/v/parser/**.v'
|
|
- 'vlib/v/checker/**.v'
|
|
- 'vlib/v/gen/c/**.v'
|
|
- 'vlib/v/builder/**.v'
|
|
- 'vlib/v/cflag/**.v'
|
|
- 'vlib/v/live/**.v'
|
|
- 'vlib/v/util/**.v'
|
|
- 'vlib/v/markused/**.v'
|
|
- 'vlib/v/preludes/**.v'
|
|
- 'vlib/v/gen/native/**.v'
|
|
- 'vlib/v/gen/native/tests/**.v'
|
|
- '.github/workflows/native_backend_ci.yml'
|
|
pull_request:
|
|
paths:
|
|
- '!**'
|
|
- '!**.md'
|
|
- 'vlib/v/gen/native/'
|
|
- 'cmd/tools/builders/**.v'
|
|
- 'vlib/builtin/**.v'
|
|
- 'vlib/v/ast/**.v'
|
|
- 'vlib/v/scanner/**.v'
|
|
- 'vlib/v/parser/**.v'
|
|
- 'vlib/v/checker/**.v'
|
|
- 'vlib/v/gen/c/**.v'
|
|
- 'vlib/v/builder/**.v'
|
|
- 'vlib/v/cflag/**.v'
|
|
- 'vlib/v/live/**.v'
|
|
- 'vlib/v/util/**.v'
|
|
- 'vlib/v/markused/**.v'
|
|
- 'vlib/v/preludes/**.v'
|
|
- 'vlib/v/gen/native/**.v'
|
|
- 'vlib/v/gen/native/tests/**.v'
|
|
- '.github/workflows/native_backend_ci.yml'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.sha || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
native-backend:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-20.04, macos-12, windows-2019]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build V
|
|
if: runner.os != 'Windows'
|
|
run: make -j4 && ./v symlink
|
|
- name: Build V (Windows)
|
|
if: runner.os == 'Windows'
|
|
run: ./make.bat && ./v symlink
|
|
- name: Install linker
|
|
if: runner.os == 'Linux'
|
|
run: v retry -- sudo apt -qq install binutils
|
|
- name: Run the native backend tests serially with more details
|
|
run: |
|
|
v vlib/v/gen/native/macho_test.v
|
|
v vlib/v/gen/native/tests/native_test.v
|