Skip to content

Commit

Permalink
Merge pull request #357 from ko-matsu/feature/update-cfd-0.4.4
Browse files Browse the repository at this point in the history
update to v0.4.4
  • Loading branch information
k-matsuzawa authored Apr 25, 2022
2 parents 2a40fe5 + 3744bc5 commit fb2a74a
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .github/workflows/create_release-and-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,18 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- name: cmake version
id: cmake_version
shell: bash
run: |
cmake --version
cmake_version=$(cmake --version | head -n 1)
echo ::set-output name=CMAKE_VERSION::${cmake_version}
- name: update cmake
if: "contains(${{steps.cmake_version.outputs.CMAKE_VERSION}}, '3.23.0')"
uses: jwlawson/actions-setup-cmake@v1.12
with:
cmake-version: '3.23.x'
- name: output url
id: get_url
run: echo "::set-output name=upload_url::${{ needs.create_releases.outputs.release_url }}"
Expand Down Expand Up @@ -144,6 +156,18 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- name: cmake version
id: cmake_version
shell: bash
run: |
cmake --version
cmake_version=$(cmake --version | head -n 1)
echo ::set-output name=CMAKE_VERSION::${cmake_version}
- name: update cmake
if: "contains(${{steps.cmake_version.outputs.CMAKE_VERSION}}, '3.23.0')"
uses: jwlawson/actions-setup-cmake@v1.12
with:
cmake-version: '3.23.x'
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
Expand Down Expand Up @@ -278,6 +302,18 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- name: cmake version
id: cmake_version
shell: bash
run: |
cmake --version
cmake_version=$(cmake --version | head -n 1)
echo ::set-output name=CMAKE_VERSION::${cmake_version}
- name: update cmake
if: "contains(${{steps.cmake_version.outputs.CMAKE_VERSION}}, '3.23.0')"
uses: jwlawson/actions-setup-cmake@v1.12
with:
cmake-version: '3.23.x'
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
Expand Down
2 changes: 1 addition & 1 deletion local_resource/external_project_local_setting.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CFD_VERSION=0.4.3
CFD_VERSION=0.4.4
CFDCORE_TARGET_VERSION=refs/tags/v0.4.3
LIBWALLY_TARGET_VERSION=refs/tags/cfd-0.4.5
CFDCORE_TARGET_URL=cryptogarageinc/cfd-core.git

0 comments on commit fb2a74a

Please sign in to comment.