Skip to content

Commit

Permalink
build with shell echo and force g++
Browse files Browse the repository at this point in the history
  • Loading branch information
skaller committed Oct 27, 2022
1 parent 7bceda3 commit 4f0bd67
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/felix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,20 @@ jobs:
- uses: actions/checkout@v3
- run: echo $PATH
- run: git clone -b 4.14 https://github.com/ocaml/ocaml.git
- run: cd ocaml; ./configure
- run: cd ocaml; make
- run: |
cd ocaml
./configure
make
- run: cd ocaml; sudo make install
- run: ocaml --version
- run: python3 --version
- run: g++ --version
- run: ls
- run: export FLX_SHELL_ECHO=1
- run: export FLX_BUILD_TOOLCHAIN_FAMILY=gcc
- run: make
- run: |
export FLX_SHELL_ECHO=1
export FLX_BUILD_TOOLCHAIN_FAMILY=gcc
echo $FLX_BUILD_TOOLCHAIN_FAMILY
echo $FLX_SHELL_ECHO
make

0 comments on commit 4f0bd67

Please sign in to comment.