From 1f7a4884331ccc137aed558951c40b7df6916bba Mon Sep 17 00:00:00 2001 From: Dimitris Kalamaras Date: Sun, 24 Nov 2024 03:05:14 +0200 Subject: [PATCH] work on GHA build yml, matrix.. --- .github/workflows/build-ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-ci.yml b/.github/workflows/build-ci.yml index 5c5d8d36..23d5b13d 100644 --- a/.github/workflows/build-ci.yml +++ b/.github/workflows/build-ci.yml @@ -1,13 +1,24 @@ name: Build SocNetV CI run-name: ${{ github.actor }} testing latest SocNetV build with GitHub Actions 🚀 on: [push] +jobs: + example_matrix: + strategy: + matrix: + os: [ubuntu-22.04, ubuntu-20.04] + version: [10, 12, 14] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.version }} + jobs: build_matrix: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-2019] qt-version: [ '6.5.3', '6.6.3'] - experimental: [false] exclude: # some reason - os: ubuntu-latest