File tree Expand file tree Collapse file tree 1 file changed +0
-45
lines changed Expand file tree Collapse file tree 1 file changed +0
-45
lines changed Original file line number Diff line number Diff line change 4747
4848 - name : Run tests
4949 run : opam exec -- dune runtest --display=short
50-
51- build_gcc10 :
52- name : Test GCC 10
53- runs-on : ${{ matrix.os }}
54-
55- strategy :
56- fail-fast : false
57- matrix :
58- os : [ubuntu-22.04]
59- ocaml-compiler : [4.14.1]
60-
61- steps :
62- - name : Setup gcc 10
63- run : |
64- sudo apt update
65- sudo apt install gcc-10
66- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100
67- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 100
68-
69- - name : Checkout project
70- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
71- with :
72- submodules : " recursive"
73-
74- - name : Setup OCaml ${{ matrix.ocaml-compiler }}
75- uses : ocaml/setup-ocaml@c2e6bb92370612b89f302c3aaefa1da45ee2d702 # v3.2.15
76- with :
77- ocaml-compiler : ${{ matrix.ocaml-compiler }}
78-
79- - name : Inspect depexts
80- run : |
81- opam exec -- which cmake
82- opam exec -- which gcc
83- opam exec -- which g++
84- opam exec -- gcc --version
85- opam exec -- g++ --version
86-
87- - name : Install local dependencies
88- run : opam install . --deps-only --with-test
89-
90- - name : Build project
91- run : opam exec -- dune build
92-
93- - name : Run tests
94- run : opam exec -- dune runtest --display=short
You can’t perform that action at this time.
0 commit comments