diff options
| author | Ryo Nakamura <upa@haeena.net> | 2022-11-24 22:59:59 +0900 |
|---|---|---|
| committer | Ryo Nakamura <upa@haeena.net> | 2022-11-24 22:59:59 +0900 |
| commit | b46a6f15c1548121747dfafdf9cec9130944be4b (patch) | |
| tree | 18545d6ad04afbabdd83fe473aceb952a48241aa /.github/workflows/build-ubuntu.yml | |
| parent | 6f9aaeab80e601b45b60bd1ca78f5e8fd2f49605 (diff) | |
update github workflows to fit patched libssh
Diffstat (limited to '.github/workflows/build-ubuntu.yml')
| -rw-r--r-- | .github/workflows/build-ubuntu.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/build-ubuntu.yml b/.github/workflows/build-ubuntu.yml index 4fae437..b2c703f 100644 --- a/.github/workflows/build-ubuntu.yml +++ b/.github/workflows/build-ubuntu.yml @@ -19,9 +19,15 @@ jobs: steps: - uses: actions/checkout@v3 + with: + submodules: true + - name: install build dependency run: sudo ./scripts/install-build-deps.sh + - name: patch to libssh + run: patch -d libssh -p1 < patch/libssh-0.10.4.patch + - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type |
