Skip to content

Commit

Permalink
Add 32-bit debug runtime workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jmid committed Jun 3, 2024
1 parent f1533b8 commit 196c4ad
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/linux-520-32bit-debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 32bit 5.2 debug

on:
pull_request:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
uses: ./.github/workflows/common.yml
with:
compiler: 'ocaml-variants.5.2.0+options,ocaml-option-32bit'
dune_profile: 'debug-runtime'
runparam: 's=4096,v=0,V=1'
timeout: 240
18 changes: 18 additions & 0 deletions .github/workflows/linux-530-trunk-32bit-debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: 32bit trunk debug

on:
pull_request:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
uses: ./.github/workflows/common.yml
with:
compiler: 'ocaml-variants.5.3.0+trunk,ocaml-option-32bit'
compiler_git_ref: refs/heads/trunk
dune_profile: 'debug-runtime'
runparam: 's=4096,v=0,V=1'
timeout: 240

0 comments on commit 196c4ad

Please sign in to comment.