1
mirror of https://github.com/R2Northstar/Northstar synced 2025-09-25 11:30:50 +02:00

Compare commits

...

3 Commits

Author SHA1 Message Date
GeckoEidechse
8fb1f315bb Add step to wait for launcher files to be ready (#576)
Adds a small bash script and calls it in CI to block the CI from progressing until the launcher release files are uploaded.
2023-11-02 11:51:52 +01:00
GeckoEidechse
4dccb376ec Trim trailing whitespaces 2023-10-30 21:05:31 +01:00
Jack
ec0491e1e3 Make add-to-project work on PRs (#574) 2023-10-29 00:01:55 +02:00
3 changed files with 35 additions and 2 deletions

View File

@@ -4,6 +4,9 @@ on:
issues:
types:
- opened
pull_request_target:
types:
- opened
jobs:
add-to-project:
@@ -14,4 +17,4 @@ jobs:
with:
project-url: "https://github.com/orgs/R2Northstar/projects/3"
github-token: "${{ secrets.PROJECT_BOARD_TOKEN }}"

View File

@@ -20,6 +20,10 @@ jobs:
build-northstar:
runs-on: ubuntu-20.04
steps:
- name: Wait for launcher release build to be ready
timeout-minutes: 30 # Only wait for 30 minutes. If we take longer, something probably broke
run:
bash wait_dl.sh
- name: Download compiled launcher
run:
wget "https://github.com/R2Northstar/NorthstarLauncher/releases/download/${{ env.NORTHSTAR_VERSION }}/northstar-launcher.zip"
@@ -60,7 +64,7 @@ jobs:
mkdir -p northstar/bin/x64_dedi
unzip northstar-discord-rpc.zip -d northstar/R2Northstar/plugins
unzip NorthstarStubs.zip -d northstar/bin/x64_dedi
unzip northstar-launcher.zip -d northstar
rsync -avr --exclude="Northstar.Coop" --exclude=".git*" northstar-mods/. northstar/R2Northstar/mods

26
wait_for_launcher_dl.sh Executable file
View File

@@ -0,0 +1,26 @@
#!/bin/bash
# Check if contains command line arg
if [ -z "$1" ]; then
echo "Missing command-line argument."
exit 1
fi
url="https://github.com/R2Northstar/NorthstarLauncher/releases/tag/$1"
wait_time_seconds=60
# Loop until the response code changes
while true; do
response=$(curl --silent --output /dev/null --write-out "%{http_code}" $url)
if [ $response -ne 200 ]; then
echo "Response is not 200. Retrying in $wait_time_seconds seconds."
sleep $wait_time_seconds
else
echo "Site is accessible with response code $response."
break
fi
done
# 10 second sleep just in case we hit some weird race condition
# where files are still being uploaded but release is done
sleep 10