Skip to content

Commit e45bb3c

Browse files
authored
Merge pull request #698 from szadam/fastbuild_step_names
Change the name of the install dependencies step in fastbuild
2 parents 6bbde6a + 0e094b7 commit e45bb3c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/fast.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,18 +70,18 @@ jobs:
7070
vcpkgDirectory: ${{env.BUILD_DIR}}/vcpkg
7171
vcpkgJsonGlob: '**/vcpkg.json'
7272

73-
- name: Install dependencies
73+
- name: Install dependencies (windows-latest)
7474
if: matrix.os == 'windows-latest'
7575
run: vcpkg install
7676
shell: pwsh # Specifies PowerShell as the shell for running the script.
7777

78-
- name: Install apt packages (ubuntu-latest)
78+
- name: Install dependencies (ubuntu-latest)
7979
if: matrix.os == 'ubuntu-latest'
8080
run: |
8181
sudo apt-get update
8282
sudo apt-get install -y cmake libjemalloc-dev libhwloc-dev libnuma-dev libtbb-dev
8383
84-
- name: Install apt packages (ubuntu-20.04)
84+
- name: Install dependencies (ubuntu-20.04)
8585
if: matrix.os == 'ubuntu-20.04'
8686
run: |
8787
sudo apt-get update

0 commit comments

Comments
 (0)