Skip to content

Commit 3cde998

Browse files
committed
ci: install git before checkout
1 parent 7b6cb28 commit 3cde998

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
image: ubuntu:20.04
2828
options: "--user 0"
2929
steps:
30-
- uses: actions/checkout@v3
31-
with:
32-
submodules: recursive
33-
3430
- name: Install build dependancies
3531
run: |
3632
apt-get update
37-
apt-get install build-essential expect pkg-config fuse libfuse-dev
33+
apt-get install build-essential expect pkg-config fuse libfuse-dev git
34+
35+
- uses: actions/checkout@v3
36+
with:
37+
submodules: recursive
3838

3939
- uses: actions/setup-python@v3
4040
with:
@@ -84,16 +84,16 @@ jobs:
8484
image: ubuntu:20.04
8585
options: "--user 0"
8686
steps:
87-
- uses: actions/checkout@v3
88-
with:
89-
submodules: recursive
90-
9187
- run: |
9288
apt-get update
93-
apt-get install build-essential mingw-w64
89+
apt-get install build-essential mingw-w64 git
9490
update-alternatives --set i686-w64-mingw32-gcc /usr/bin/i686-w64-mingw32-gcc-posix
9591
update-alternatives --set i686-w64-mingw32-g++ /usr/bin/i686-w64-mingw32-g++-posix
9692
93+
- uses: actions/checkout@v3
94+
with:
95+
submodules: recursive
96+
9797
- uses: actions/setup-python@v3
9898
with:
9999
python-version: "3.x"

0 commit comments

Comments
 (0)