Set up build lib for Debian x86_64 action/workflow
Some checks failed
Build for Releases / ensure-release-exists (push) Successful in 7s
Run UnitTest / build-and-run-UnitTest (push) Successful in 18s
Build for Releases / assets-release-x86_64 (push) Successful in 49s
Build for Releases / assets-release-x86_64-debian (push) Failing after 25s
Some checks failed
Build for Releases / ensure-release-exists (push) Successful in 7s
Run UnitTest / build-and-run-UnitTest (push) Successful in 18s
Build for Releases / assets-release-x86_64 (push) Successful in 49s
Build for Releases / assets-release-x86_64-debian (push) Failing after 25s
This commit is contained in:
parent
9fc4671bec
commit
fe07d4e78a
1 changed files with 113 additions and 3 deletions
|
@ -23,7 +23,8 @@ jobs:
|
|||
-H 'Content-Type: application/json' \
|
||||
-d "{
|
||||
\"name\": \"3d_collision_helpers version ${GITHUB_REF_NAME}\",
|
||||
\"tag_name\": \"${GITHUB_REF_NAME}\"
|
||||
\"tag_name\": \"${GITHUB_REF_NAME}\",
|
||||
\"body\": \"SHA256SUMS\"
|
||||
}" >&/dev/null
|
||||
|
||||
assets-release-x86_64:
|
||||
|
@ -74,7 +75,7 @@ jobs:
|
|||
-H 'Content-Type: application/json' \
|
||||
-d "{
|
||||
\"body\":\"$(jq .body < current_release_info.json | sed -e 's/^"//' -e 's/"$//')
|
||||
SHA256SUM $(find "$THE_CURRENT_WORKING_DIRECTORY" -maxdepth 1 -name "*$SHARED_LIB_ASSET_NAME" -execdir sha256sum '{}' ';')\"
|
||||
$(find "$THE_CURRENT_WORKING_DIRECTORY" -maxdepth 1 -name "*$SHARED_LIB_ASSET_NAME" -execdir sha256sum '{}' ';' | sed -e 's|\./3d_collision|3d_collision|')\"
|
||||
}" >&/dev/null
|
||||
curl --fail-with-body -X POST \
|
||||
"https://git.seodisparate.com/api/v1/repos/stephenseo/3d_collision_helpers/releases/$(jq .id < $THE_CURRENT_WORKING_DIRECTORY/release_info.json)/assets" \
|
||||
|
@ -104,7 +105,7 @@ jobs:
|
|||
-H 'Content-Type: application/json' \
|
||||
-d "{
|
||||
\"body\":\"$(jq .body < current_release_info.json | sed -e 's/^"//' -e 's/"$//')
|
||||
SHA256SUM $(find "$THE_CURRENT_WORKING_DIRECTORY" -maxdepth 1 -name "*$STATIC_LIB_ASSET_NAME" -execdir sha256sum '{}' ';')\"
|
||||
$(find "$THE_CURRENT_WORKING_DIRECTORY" -maxdepth 1 -name "*$STATIC_LIB_ASSET_NAME" -execdir sha256sum '{}' ';' | sed -e 's|\./3d_collision|3d_collision|')\"
|
||||
}" >&/dev/null
|
||||
curl --fail-with-body -X POST \
|
||||
"https://git.seodisparate.com/api/v1/repos/stephenseo/3d_collision_helpers/releases/$(jq .id < $THE_CURRENT_WORKING_DIRECTORY/release_info.json)/assets" \
|
||||
|
@ -113,3 +114,112 @@ jobs:
|
|||
-H 'Content-Type: multipart/form-data' \
|
||||
-F "attachment=@${THE_CURRENT_WORKING_DIRECTORY}/$STATIC_LIB_ASSET_NAME;type=application/zstd" > client_attach.json
|
||||
fi
|
||||
|
||||
assets-release-x86_64-debian:
|
||||
needs: assets-release-x86_64
|
||||
if: ${{ always() }}
|
||||
runs-on: docker_debian_bookworm
|
||||
env:
|
||||
SHARED_LIB_ASSET_NAME: "3d_collision_helpers_${{ github.ref_name }}_debian_shared.tar.zst"
|
||||
STATIC_LIB_ASSET_NAME: "3d_collision_helpers_${{ github.ref_name }}_debian_static.tar.zst"
|
||||
steps:
|
||||
- name: Update and upgrade with apt
|
||||
run: apt-get --yes update && apt-get --yes upgrade
|
||||
- name: Get necessary packages
|
||||
run: apt-get --yes install gcc g++ jq curl cmake make zstd sed git
|
||||
- name: Get release info
|
||||
run: |
|
||||
curl -X GET \
|
||||
"https://git.seodisparate.com/api/v1/repos/stephenseo/3d_collision_helpers/releases/tags/${GITHUB_REF_NAME}" \
|
||||
-H 'accept: application/json' -o release_info.json
|
||||
- name: Check if asset exists
|
||||
run: |
|
||||
for asset in $(jq '.assets[].name' < release_info.json | tr -d '"'); do
|
||||
if [[ "$asset" == "$SHARED_LIB_ASSET_NAME" ]]; then
|
||||
touch shared_lib_exists
|
||||
elif [[ "$asset" == "$STATIC_LIB_ASSET_NAME" ]]; then
|
||||
touch static_lib_exists
|
||||
fi
|
||||
done
|
||||
- name: Build shared if asset does not exist
|
||||
run: |
|
||||
if ! [[ -e shared_lib_exists ]]; then
|
||||
if ! [[ -d 3dch_cloned ]]; then
|
||||
git clone --depth=1 --no-single-branch https://git.seodisparate.com/stephenseo/3d_collision_helpers.git 3dch_cloned
|
||||
fi
|
||||
pushd 3dch_cloned >&/dev/null && git restore . && git checkout "${GITHUB_REF_NAME}" && popd >&/dev/null
|
||||
# Debian's gcc doesn't know about "-fstrict-flex-arrays=3".
|
||||
sed -i -e 's/-fstrict-flex-arrays=3//g' 3dch_cloned/CMakeLists.txt
|
||||
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=On -DCMAKE_INSTALL_PREFIX=/usr -S 3dch_cloned -B buildReleaseShared
|
||||
make -C buildReleaseShared
|
||||
mkdir sharedOut
|
||||
make DESTDIR=sharedOut -C buildReleaseShared install
|
||||
|
||||
pushd sharedOut >&/dev/null
|
||||
|
||||
tar --sort=name -I'zstd --compress -T0 --ultra -20' -cf "$SHARED_LIB_ASSET_NAME" usr
|
||||
|
||||
popd >&/dev/null
|
||||
|
||||
curl -X GET \
|
||||
"https://git.seodisparate.com/api/v1/repos/stephenseo/3d_collision_helpers/releases/tags/${GITHUB_REF_NAME}" \
|
||||
-H 'accept: application/json' -o release_info_latest.json
|
||||
|
||||
curl --fail-with-body -X PATCH \
|
||||
"https://git.seodisparate.com/api/v1/repos/stephenseo/3d_collision_helpers/releases/$(jq .id < release_info_latest.json)" \
|
||||
-H 'accept: application/json' \
|
||||
-H "Authorization: token ${GITHUB_TOKEN}" \
|
||||
-H 'Content-Type: application/json' \
|
||||
-d "{
|
||||
\"body\": \"$(jq .body < release_info_latest.json | sed -e 's/^"//' -e 's/"$//')
|
||||
$(cd sharedOut && sha256sum "$SHARED_LIB_ASSET_NAME")\"
|
||||
"} >&/dev/null
|
||||
|
||||
curl --fail-with-body -X POST \
|
||||
"https://git.seodisparate.com/api/v1/repos/stephenseo/3d_collision_helpers/releases/$(jq .id < release_info_latest.json)/assets" \
|
||||
-H 'accept: application/json' \
|
||||
-H "Authorization: token ${GITHUB_TOKEN}" \
|
||||
-H 'Content-Type: multipart/form-data' \
|
||||
-F "attachment=@sharedOut/${SHARED_LIB_ASSET_NAME};type=application/zstd" >&/dev/null
|
||||
fi
|
||||
- name: Build static if asset does not exist
|
||||
run: |
|
||||
if ! [[ -e static_lib_exists ]]; then
|
||||
if ! [[ -d 3dch_cloned ]]; then
|
||||
git clone --depth=1 --no-single-branch https://git.seodisparate.com/stephenseo/3d_collision_helpers.git 3dch_cloned
|
||||
fi
|
||||
pushd 3dch_cloned >&/dev/null && git restore . && git checkout "${GITHUB_REF_NAME}" && popd >&/dev/null
|
||||
# Debian's gcc doesn't know about "-fstrict-flex-arrays=3".
|
||||
sed -i -e 's/-fstrict-flex-arrays=3//g' 3dch_cloned/CMakeLists.txt
|
||||
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=Off -DCMAKE_INSTALL_PREFIX=/usr -S 3dch_cloned -B buildReleaseStatic
|
||||
make -C buildReleaseStatic
|
||||
mkdir staticOut
|
||||
make DESTDIR=staticOut -C buildReleaseStatic install
|
||||
|
||||
pushd staticOut >&/dev/null
|
||||
|
||||
tar --sort=name -I'zstd --compress -T0 --ultra -20' -cf "$STATIC_LIB_ASSET_NAME" usr
|
||||
|
||||
popd >&/dev/null
|
||||
|
||||
curl -X GET \
|
||||
"https://git.seodisparate.com/api/v1/repos/stephenseo/3d_collision_helpers/releases/tags/${GITHUB_REF_NAME}" \
|
||||
-H 'accept: application/json' -o release_info_latest.json
|
||||
|
||||
curl --fail-with-body -X PATCH \
|
||||
"https://git.seodisparate.com/api/v1/repos/stephenseo/3d_collision_helpers/releases/$(jq .id < release_info_latest.json)" \
|
||||
-H 'accept: application/json' \
|
||||
-H "Authorization: token ${GITHUB_TOKEN}" \
|
||||
-H 'Content-Type: application/json' \
|
||||
-d "{
|
||||
\"body\": \"$(jq .body < release_info_latest.json | sed -e 's/^"//' -e 's/"$//')
|
||||
$(cd staticOut && sha256sum "$STATIC_LIB_ASSET_NAME")\"
|
||||
"} >&/dev/null
|
||||
|
||||
curl --fail-with-body -X POST \
|
||||
"https://git.seodisparate.com/api/v1/repos/stephenseo/3d_collision_helpers/releases/$(jq .id < release_info_latest.json)/assets" \
|
||||
-H 'accept: application/json' \
|
||||
-H "Authorization: token ${GITHUB_TOKEN}" \
|
||||
-H 'Content-Type: multipart/form-data' \
|
||||
-F "attachment=@staticOut/${STATIC_LIB_ASSET_NAME};type=application/zstd" >&/dev/null
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue