Skip to content

Commit

Permalink
work on GHA build yml, matrix..
Browse files Browse the repository at this point in the history
  • Loading branch information
oxy86 committed Nov 24, 2024
1 parent 5306324 commit 1f7a488
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 1f7a488

Please sign in to comment.