From 196c4ad6510502b148ad337c875b6e26174182b9 Mon Sep 17 00:00:00 2001 From: Jan Midtgaard Date: Mon, 3 Jun 2024 10:49:22 +0200 Subject: [PATCH] Add 32-bit debug runtime workflows --- .github/workflows/linux-520-32bit-debug.yml | 17 +++++++++++++++++ .../workflows/linux-530-trunk-32bit-debug.yml | 18 ++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 .github/workflows/linux-520-32bit-debug.yml create mode 100644 .github/workflows/linux-530-trunk-32bit-debug.yml diff --git a/.github/workflows/linux-520-32bit-debug.yml b/.github/workflows/linux-520-32bit-debug.yml new file mode 100644 index 00000000..5443bd04 --- /dev/null +++ b/.github/workflows/linux-520-32bit-debug.yml @@ -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 diff --git a/.github/workflows/linux-530-trunk-32bit-debug.yml b/.github/workflows/linux-530-trunk-32bit-debug.yml new file mode 100644 index 00000000..787d4819 --- /dev/null +++ b/.github/workflows/linux-530-trunk-32bit-debug.yml @@ -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