Install binaries
This commit is contained in:
parent
aa76d7e081
commit
ffcf3e1658
@ -19,7 +19,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ ubuntu-latest ]
|
os: [ ubuntu-latest ]
|
||||||
BIRTH_CMAKE_BUILD_TYPE: [ Debug, RelWithDebInfo, Release, MinSizeRel ]
|
BIRTH_CMAKE_BUILD_TYPE: [ Debug, Release ]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@ -30,7 +30,12 @@ jobs:
|
|||||||
CMAKE_BUILD_TYPE: ${{matrix.BIRTH_CMAKE_BUILD_TYPE}}
|
CMAKE_BUILD_TYPE: ${{matrix.BIRTH_CMAKE_BUILD_TYPE}}
|
||||||
CLANG_PATH: clang-19
|
CLANG_PATH: clang-19
|
||||||
CLANGXX_PATH: clang++-19
|
CLANGXX_PATH: clang++-19
|
||||||
|
GITEA_SHA:
|
||||||
|
GITEA_REF:
|
||||||
run: |
|
run: |
|
||||||
|
set -eu
|
||||||
./generate.sh
|
./generate.sh
|
||||||
./build.sh
|
./build.sh
|
||||||
./build/bb test
|
./build/bb test
|
||||||
|
mkdir -p $HOME/bloat-buster-artifacts/$(git rev-parse --abbrev-ref HEAD)/$(git rev-parse HEAD)/$CMAKE_BUILD_TYPE
|
||||||
|
mv ./self-hosted-bb-cache $HOME/bloat-buster-artifacts/$(git rev-parse --abbrev-ref HEAD)/$(git rev-parse HEAD)/$CMAKE_BUILD_TYPE/cache
|
||||||
|
@ -624,10 +624,8 @@ void entry_point(Slice<char* const> arguments, Slice<char* const> envp)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (BuildMode compiler_build_mode = BuildMode::debug_none; compiler_build_mode < BuildMode::count; compiler_build_mode = (BuildMode)((backing_type(BuildMode))compiler_build_mode + 1))
|
BuildMode compiler_build_mode = BuildMode::debug_none;
|
||||||
{
|
bool compiler_has_debug_info = true;
|
||||||
for (bool compiler_has_debug_info : has_debug_info_array)
|
|
||||||
{
|
|
||||||
auto compiler = compile_file(arena, {
|
auto compiler = compile_file(arena, {
|
||||||
.relative_file_path = string_literal("src/compiler.bbb"),
|
.relative_file_path = string_literal("src/compiler.bbb"),
|
||||||
.build_mode = compiler_build_mode,
|
.build_mode = compiler_build_mode,
|
||||||
@ -670,8 +668,6 @@ void entry_point(Slice<char* const> arguments, Slice<char* const> envp)
|
|||||||
print(compiler_has_debug_info ? string_literal(" with debug info\n") : string_literal(" with no debug info\n"));
|
print(compiler_has_debug_info ? string_literal(" with debug info\n") : string_literal(" with no debug info\n"));
|
||||||
bb_fail();
|
bb_fail();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
} break;
|
} break;
|
||||||
case Command::count:
|
case Command::count:
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user