Skip to content

Commit

Permalink
.github: Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreRH committed Oct 8, 2023
1 parent 25531ec commit dc88424
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/ubuntu-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,19 @@ jobs:
cd qemu/build
../configure --disable-werror --target-list=arm-linux-user,i386-linux-user
make -j$(nproc)
- name: build fex
- name: build fex_unix
run: |
mkdir -p fex/build
cd fex/build
CC=clang CXX=clang++ cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_LTO=True -DENABLE_LLD=True -DBUILD_TESTS=False -DENABLE_ASSERTIONS=False -DENABLE_X86_HOST_DEBUG=True ..
mkdir -p fex/build_unix
cd fex/build_unix
CC=clang CXX=clang++ cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_LTO=True -DBUILD_TESTS=False -DENABLE_ASSERTIONS=False ..
make -j$(nproc) FEXCore_shared
- name: build fex_pe
run: |
export PATH=$PWD/llvm-mingw-20230614-ucrt-ubuntu-20.04-x86_64/bin:$PATH
mkdir -p fex/build_pe
cd fex/build_pe
cmake -DCMAKE_TOOLCHAIN_FILE=../toolchain_mingw.cmake -DENABLE_JEMALLOC=0 -DENABLE_JEMALLOC_GLIBC_ALLOC=0 -DMINGW_TRIPLE=aarch64-w64-mingw32 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_TESTS=False -DENABLE_ASSERTIONS=False ..
make -j$(nproc) wow64fex
- name: build wine
run: |
export PATH=$PWD/llvm-mingw-20230614-ucrt-ubuntu-20.04-x86_64/bin:$PATH
Expand Down

0 comments on commit dc88424

Please sign in to comment.