Compare commits

..

No commits in common. "b40470f43f1f51327d0248f04b7f2c1e12b69320" and "4a0a4bc1c34333feaec4b6733dfa399de4547716" have entirely different histories.

2 changed files with 24 additions and 87 deletions

View file

@ -1,101 +1,42 @@
name: Build for Releases name: Build for Releases
on: on: push
push:
tags:
- '*'
jobs: jobs:
ensure-release-exists: ensure-releases-exists-and-push-build:
runs-on: any_archLinux runs-on: any_archLinux
steps: steps:
- name: Check release and create if it doesn't exist - name: Get tags, release, and build
run: | run: |
THE_ACTION_WORKING_DIRECTORY="$(pwd)" THE_ACTION_WORKING_DIRECTORY="$(pwd)"
curl -X GET "https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/releases/tags/$GITHUB_REF_NAME" \ curl -X GET 'https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/tags' \
-H 'accept: application/json' | jq '.[].name' | tr -d '"' > tag_names
for tag_name in $(cat tag_names); do
echo $tag_name
curl -X GET "https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/releases/tags/$tag_name" \
-H "Authorization: token ${GITHUB_TOKEN}" \ -H "Authorization: token ${GITHUB_TOKEN}" \
-H 'accept: application/json' -o "${THE_ACTION_WORKING_DIRECTORY}/release_${GITHUB_REF_NAME}_check.json" \ -H 'accept: application/json' -o "${THE_ACTION_WORKING_DIRECTORY}/release_${tag_name}_check.json" \
-w '%{http_code}' > release_${GITHUB_REF_NAME}_check_code -w '%{http_code}' > release_${tag_name}_check_code
if [[ "404" == "$(cat release_${GITHUB_REF_NAME}_check_code)" ]]; then test "404" = "$(cat release_${tag_name}_check_code)" && \
curl --fail-with-body -X POST \ curl --fail-with-body -X POST \
"https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/releases" \ "https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/releases" \
-H 'accept: application/json' \ -H 'accept: application/json' \
-H "Authorization: token ${GITHUB_TOKEN}" \ -H "Authorization: token ${GITHUB_TOKEN}" \
-H 'Content-Type: application/json' \ -H 'Content-Type: application/json' \
-d "{ -d "{
\"name\": \"break_interval version ${GITHUB_REF_NAME}\", \"name\": \"break_interval version ${tag_name}\",
\"tag_name\": \"${GITHUB_REF_NAME}\" }" > "${THE_ACTION_WORKING_DIRECTORY}/release_${GITHUB_REF_NAME}_create.json" && \ \"tag_name\": \"${tag_name}\" }" > "${THE_ACTION_WORKING_DIRECTORY}/release_${tag_name}_create.json" && \
fi (test -d "break_interval" || git clone --depth=1 --no-single-branch https://${GITHUB_TOKEN}@git.seodisparate.com/stephenseo/break_interval.git break_interval) && \
pushd break_interval >&/dev/null && \
ensure-releases-exists-and-push-build-x86_64: git clean -xfd && git restore . && git checkout "${tag_name}" && \
needs: ensure-release-exists cmake -S . -B buildRelease -DCMAKE_BUILD_TYPE=Release && \
runs-on: any_archLinux make -C buildRelease && \
steps: cd buildRelease && strip --strip-unneeded break_interval && \
- name: Check release assets and build for x86_64 zstd --ultra -20 break_interval -o break_interval_x86_64_${tag_name}.zst && \
run: |
THE_ACTION_WORKING_DIRECTORY="$(pwd)"
BUILD_ASSET_NAME="break_interval_x86_64_${GITHUB_REF_NAME}.zst"
curl -X GET \
"https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/releases/tags/${GITHUB_REF_NAME}" \
-H 'accept: application/json' -o "${THE_ACTION_WORKING_DIRECTORY}/release_info.json" 2>/dev/null
BUILD_ASSET_EXISTS=0
for asset in $(jq '.assets.[].name' < "${THE_ACTION_WORKING_DIRECTORY}/release_info.json"); do
if [[ "$asset" == "$BUILD_ASSET_NAME" ]]; then
BUILD_ASSET_EXISTS=1
break
fi
done
if ! (( BUILD_ASSET_EXISTS )); then
if ! [[ -d "break_interval_clone" ]]; then
git clone --depth=1 --no-single-branch https://git.seodisparate.com/stephenseo/break_interval.git break_interval_clone
fi
pushd break_interval_clone >&/dev/null
git clean -xfd && git restore . && git checkout "${GITHUB_REF_NAME}"
cmake -S . -B buildRelease -DCMAKE_BUILD_TYPE=Release
make -C buildRelease
strip --strip-unneeded buildRelease/break_interval
zstd --ultra -20 buildRelease/break_interval -o "${THE_ACTION_WORKING_DIRECTORY}/${BUILD_ASSET_NAME}"
curl --fail-with-body -X POST \ curl --fail-with-body -X POST \
"https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/releases/$(jq .id < "${THE_ACTION_WORKING_DIRECTORY}/release_info.json")/assets" \ "https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/releases/$(jq .id < "${THE_ACTION_WORKING_DIRECTORY}/release_${tag_name}_create.json")/assets" \
-H 'accept: application/json' \ -H 'accept: application/json' \
-H "Authorization: token ${GITHUB_TOKEN}" \ -H "Authorization: token ${GITHUB_TOKEN}" \
-H 'Content-Type: multipart/form-data' \ -H 'Content-Type: multipart/form-data' \
-F "attachment=@${THE_ACTION_WORKING_DIRECTORY}/${BUILD_ASSET_NAME};type=application/zstd" > "${THE_ACTION_WORKING_DIRECTORY}/attach_${GITHUB_REF_NAME}.json" -F "attachment=@break_interval_x86_64_${tag_name}.zst;type=application/zstd" > "${THE_ACTION_WORKING_DIRECTORY}/attach_${tag_name}.json"
popd >&/dev/null while popd >&/dev/null; do echo -n; done
fi
ensure-releases-exists-and-push-build-aarch64:
needs: ensure-release-exists
runs-on: aarch64_archLinux
steps:
- name: Check release assets and build for aarch64
run: |
THE_ACTION_WORKING_DIRECTORY="$(pwd)"
BUILD_ASSET_NAME="break_interval_aarch64_${GITHUB_REF_NAME}.zst"
curl -X GET \
"https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/releases/tags/${GITHUB_REF_NAME}" \
-H 'accept: application/json' -o "${THE_ACTION_WORKING_DIRECTORY}/release_info.json" 2>/dev/null
BUILD_ASSET_EXISTS=0
for asset in $(jq '.assets.[].name' < "${THE_ACTION_WORKING_DIRECTORY}/release_info.json"); do
if [[ "$asset" == "$BUILD_ASSET_NAME" ]]; then
BUILD_ASSET_EXISTS=1
break
fi
done done
if ! (( BUILD_ASSET_EXISTS )); then
if ! [[ -d "break_interval_clone" ]]; then
git clone --depth=1 --no-single-branch https://git.seodisparate.com/stephenseo/break_interval.git break_interval_clone
fi
pushd break_interval_clone >&/dev/null
git clean -xfd && git restore . && git checkout "${GITHUB_REF_NAME}"
cmake -S . -B buildRelease -DCMAKE_BUILD_TYPE=Release
make -C buildRelease
strip --strip-unneeded buildRelease/break_interval
zstd --ultra -20 buildRelease/break_interval -o "${THE_ACTION_WORKING_DIRECTORY}/${BUILD_ASSET_NAME}"
curl --fail-with-body -X POST \
"https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/releases/$(jq .id < "${THE_ACTION_WORKING_DIRECTORY}/release_info.json")/assets" \
-H 'accept: application/json' \
-H "Authorization: token ${GITHUB_TOKEN}" \
-H 'Content-Type: multipart/form-data' \
-F "attachment=@${THE_ACTION_WORKING_DIRECTORY}/${BUILD_ASSET_NAME};type=application/zstd" > "${THE_ACTION_WORKING_DIRECTORY}/attach_${GITHUB_REF_NAME}.json"
popd >&/dev/null
fi

View file

@ -2,12 +2,8 @@
## Upcoming Changes ## Upcoming Changes
## Version 1.2
Minor tweaks to help text, README. Minor tweaks to help text, README.
Add workflow to build break\_interval for x86_64 and aarch64.
## Version 1.1 ## Version 1.1
Change usage of internal audio to use a Unix pipe instead of reading from Change usage of internal audio to use a Unix pipe instead of reading from