Skip to content

Commit

Permalink
bootstrap: Use bootstrap.sh instead of build.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
obiwac committed Nov 5, 2024
1 parent 14185c0 commit c6b5a4a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ task:
image: gcc:latest
env:
ASAN_OPTIONS: detect_leaks=0
build_script:
- sh build.sh
bootstrap_script:
- sh boostrap.sh
test_build_bob_with_bob_script:
- $(realpath .bootstrap/bob) build
test_run_bob_with_bob_script:
Expand All @@ -26,8 +26,8 @@ task:
image: gcc:latest
env:
ASAN_OPTIONS: detect_leaks=0
build_script:
- sh build.sh
bootstrap_script:
- sh boostrap.sh
test_build_bob_with_bob_script:
- $(realpath .bootstrap/bob) build
test_run_bob_with_bob_script:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Get all source files
run: echo "SRC=$(find src -name "*.[ch]" -print0 -o -path src/flamingo -prune -type f | xargs -0 echo)" >> $GITHUB_ENV
- name: Build (with LSP output)
run: intercept-build-15 sh build.sh
run: intercept-build-15 sh bootstrap.sh
- name: Run clang-tidy
run: clang-tidy $SRC
- name: Make sure 'mkdir_wrapped' is used everywhere (except for once for 'fsutils.c')
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
with:
version: latest
platform: x64
- name: Build
run: sh build.sh
- name: Bootstrap
run: sh bootstrap.sh
- name: Test building Bob using Bob
run: .bootstrap/bob build
- name: Test running the version of Bob built with Bob
Expand Down

0 comments on commit c6b5a4a

Please sign in to comment.