Skip to content

Commit

Permalink
start with 1 windows job
Browse files Browse the repository at this point in the history
  • Loading branch information
anmonteiro committed Sep 4, 2024
1 parent d717ba6 commit e3b4e44
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,16 @@ concurrency:

jobs:
build:
runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.setup.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
setup:
- {ocaml-version: '4.05', runtest: false}
- {ocaml-version: '4.09', runtest: true}
- {ocaml-version: '4.14', runtest: true}
- {ocaml-version: '5.1', runtest: true}
- {ocaml-version: '5.2', runtest: true}
- {ocaml-version: '4.05', os: ubuntu-latest, runtest: false}
- {ocaml-version: '4.09', os: ubuntu-latest, runtest: true}
- {ocaml-version: '4.14', os: ubuntu-latest, runtest: true}
- {ocaml-version: '5.1', os: ubuntu-latest, runtest: true}
- {ocaml-version: '5.2', os: ubuntu-latest, runtest: true}
- {ocaml-version: '5.2', os: windows-latest, runtest: true}
steps:
- uses: actions/checkout@v4
- uses: ocaml/setup-ocaml@v3
Expand All @@ -50,7 +48,6 @@ jobs:
matrix:
setup:
- {ocamlVersion: 4_12, os: ubuntu-latest}
- {ocamlVersion: 4_13, os: ubuntu-latest}
- {ocamlVersion: 4_14, os: ubuntu-latest}
- {ocamlVersion: 5_1, os: ubuntu-latest}
- {ocamlVersion: 5_2, os: ubuntu-latest}
Expand Down

0 comments on commit e3b4e44

Please sign in to comment.