Skip to content

Commit

Permalink
Trying with global env
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioMartin86 committed Apr 28, 2024
1 parent 0bf6e2f commit 21ebb28
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
push:
branches: [ "master" ]

env:
CC: clang-18
CXX: clang++-18

jobs:

# Build waterbox and cores
Expand All @@ -22,38 +26,20 @@ jobs:
clang-18 --version;
- name: Building musl
working-directory: ./waterbox/musl
env:
CC: clang-18
CXX: clang++-18
run: ./wbox_configure.sh;
./wbox_build.sh;
- name: Building emulibc
working-directory: ./waterbox/emulibc
env:
CC: clang-18
CXX: clang++-18
run: make
- name: Building libco
working-directory: ./waterbox/libco
env:
CC: clang-18
CXX: clang++-18
run: make
- name: Building libcxx
working-directory: ./waterbox/libcxx
env:
CC: clang-18
CXX: clang++-18
run: ./do-everything.sh
- name: Building nyma
working-directory: ./waterbox/nyma
env:
CC: clang-18
CXX: clang++-18
run: ./build-and-install-zlib.sh
- name: Building all waterboxed cores
working-directory: ./waterbox
env:
CC: clang-18
CXX: clang++-18
run: INCLUDE_MAME=1 ./make-all-cores.sh

0 comments on commit 21ebb28

Please sign in to comment.