Skip to content

Commit

Permalink
FIX 2
Browse files Browse the repository at this point in the history
  • Loading branch information
vanya-beat committed Oct 6, 2024
1 parent cc96466 commit b5edf8b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci-cpp-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Get Docker cache digest
id: get-cache-digest
run: echo "::set-output name=digest::$(sha256sum docker-compose.yml | awk '{ print $1 }')"

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

Expand All @@ -23,7 +27,7 @@ jobs:
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-docker-${{ github.sha }}
key: ${{ runner.os }}-docker-${{ steps.get-cache-digest.outputs.digest }}
restore-keys: |
${{ runner.os }}-docker-
Expand Down
2 changes: 1 addition & 1 deletion tasks/task_basic_c/task_int2str/int2str_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ TEST(int2str, BasicTestNumbers) {
EXPECT_STREQ(int2str(-123), "-123");
EXPECT_STREQ(int2str(2147483647), "2147483647");
EXPECT_STREQ(int2str(-2147483648), "-2147483648");
}
}

0 comments on commit b5edf8b

Please sign in to comment.