Skip to content

Commit

Permalink
fix tar command again
Browse files Browse the repository at this point in the history
  • Loading branch information
nmm0 committed Jun 5, 2024
1 parent bcdc4ef commit e7a78ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ jobs:
steps:
- name: Install gtest manually
run: |
mkdir -p /opt/gtest_src && cd /opt/gtest_src && wget -O- https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz | tar -x
mkdir -p /opt/gtest_src && cd /opt/gtest_src && wget -O- https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz | tar -xz
mkdir /opt/gtest_build && cd /opt/gtest_build && cmake /opt/gtest_src/v1.14.0 && cmake --build --target install
mkdir -p /opt/gbench_src && cd /opt/gbench_src && wget -O- https://github.com/google/benchmark/archive/refs/tags/v1.8.4.tar.gz | tar -x
mkdir -p /opt/gbench_src && cd /opt/gbench_src && wget -O- https://github.com/google/benchmark/archive/refs/tags/v1.8.4.tar.gz | tar -xz
mkdir /opt/gbench_build && cd /opt/gbench_build && cmake /opt/gbench_src/v1.8.4 && cmake --build --target install
- name: Create Build Environment
Expand Down

0 comments on commit e7a78ac

Please sign in to comment.