[git actions] Use docker inspect to fix gitea actions

This commit is contained in:
Sergey Konovalov
2025-08-11 15:48:25 +03:00
parent bde1698bdc
commit 8604162d77
2 changed files with 94 additions and 42 deletions

View File

@ -23,18 +23,54 @@ jobs:
- name: Pre-run cleanup
run: |
docker rm -f "$AZURITE_CONTAINER" 2>/dev/null || true
# Remove legacy container name if it exists (for self-hosted runners or retries)
docker rm -f azurite 2>/dev/null || true
- name: Run Azurite docker container
- name: Setup and start Azurite
run: |
# Detect network and set network arguments
JOB_NET=$(docker inspect -f '{{range $k,$v := .NetworkSettings.Networks}}{{printf "%s\n" $k}}{{end}}' "$(hostname)" 2>/dev/null | head -n1 || true)
if [ -n "$JOB_NET" ]; then
NETWORK_ARGS="--network $JOB_NET"
else
NETWORK_ARGS=""
fi
# Start Azurite container
docker run --name "$AZURITE_CONTAINER" \
$NETWORK_ARGS \
-p 10000:10000 \
-p 10001:10001 \
-p 10002:10002 \
-d mcr.microsoft.com/azure-storage/azurite \
azurite-blob --blobHost 0.0.0.0 --loose
# Set host based on network configuration
if [ -n "$JOB_NET" ]; then
HOST=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' "$AZURITE_CONTAINER")
else
HOST=127.0.0.1
fi
# Wait for Azurite to be ready
echo "Waiting for Azurite at $HOST:10000..."
for i in $(seq 1 15); do
if curl -sS "http://$HOST:10000/" >/dev/null 2>&1; then
echo "Azurite ready"
break
fi
sleep 1
done
# Verify Azurite is running
if ! curl -sS "http://$HOST:10000/" >/dev/null 2>&1; then
echo "Azurite failed to start"
docker logs "$AZURITE_CONTAINER" || true
exit 1
fi
# Export host for subsequent steps
echo "AZURITE_HOST=$HOST" >> "$GITHUB_ENV"
- name: Caching dependencies
uses: actions/setup-node@v3
with:
@ -51,18 +87,15 @@ jobs:
npm --prefix Common ci
npm --prefix DocService ci
- name: Setup Azure storage test environment
- name: Setup Azure storage environment
run: |
# Wait for Azurite to be ready
sleep 15
# Create Azure storage configuration
cat > Common/config/local.json << 'EOF'
# Create minimal Azure storage configuration
cat > Common/config/local.json << EOF
{
"storage": {
"name": "storage-az",
"region": "",
"endpoint": "http://127.0.0.1:10000/devstoreaccount1",
"endpoint": "http://${AZURITE_HOST:-127.0.0.1}:10000/devstoreaccount1",
"bucketName": "test-container",
"storageFolderName": "files",
"cacheFolderName": "data",
@ -97,34 +130,13 @@ jobs:
# Run Node.js script from Common directory where Azure dependencies are installed
cd Common
node -e "
const { BlobServiceClient, StorageSharedKeyCredential } = require('@azure/storage-blob');
async function setupContainer() {
try {
const accountName = 'devstoreaccount1';
const accountKey = 'Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==';
const endpoint = 'http://127.0.0.1:10000/devstoreaccount1';
const credential = new StorageSharedKeyCredential(accountName, accountKey);
const blobServiceClient = new BlobServiceClient(endpoint, credential);
const containerClient = blobServiceClient.getContainerClient('test-container');
console.log('Creating container...');
await containerClient.createIfNotExists();
console.log('Container created successfully');
// Upload a test file if needed
const blockBlobClient = containerClient.getBlockBlobClient('testfile.txt');
await blockBlobClient.upload('Test content', Buffer.byteLength('Test content'));
console.log('Test file uploaded');
} catch (error) {
console.error('Error setting up Azure storage:', error);
process.exit(1);
}
}
setupContainer();
(async () => {
const { BlobServiceClient, StorageSharedKeyCredential } = require('@azure/storage-blob');
const endpoint = 'http://' + (process.env.AZURITE_HOST || '127.0.0.1') + ':10000/devstoreaccount1';
const client = new BlobServiceClient(endpoint, new StorageSharedKeyCredential('devstoreaccount1', 'Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=='));
await client.getContainerClient('test-container').createIfNotExists();
console.log('Azure environment ready');
})().catch(console.error);
"
- name: Run storage tests

View File

@ -23,15 +23,53 @@ jobs:
# Remove legacy container name if it exists (for self-hosted runners or retries)
docker rm -f minio 2>/dev/null || true
- name: Run MinIO docker container
- name: Setup and start MinIO
run: |
# Detect network and set network arguments
JOB_NET=$(docker inspect -f '{{range $k,$v := .NetworkSettings.Networks}}{{printf "%s\n" $k}}{{end}}' "$(hostname)" 2>/dev/null | head -n1 || true)
if [ -n "$JOB_NET" ]; then
NETWORK_ARGS="--network $JOB_NET"
else
NETWORK_ARGS=""
fi
# Start MinIO container
docker run --name "$MINIO_CONTAINER" \
$NETWORK_ARGS \
-p 9000:9000 \
-p 9001:9001 \
-e "MINIO_ROOT_USER=minioadmin" \
-e "MINIO_ROOT_PASSWORD=minioadmin" \
-d minio/minio server /data --console-address ":9001"
# Set host based on network configuration
if [ -n "$JOB_NET" ]; then
HOST=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' "$MINIO_CONTAINER")
else
HOST=127.0.0.1
fi
# Wait for MinIO to be ready
echo "Waiting for MinIO at $HOST:9000..."
for i in $(seq 1 15); do
if curl -sS "http://$HOST:9000/minio/health/ready" >/dev/null 2>&1; then
echo "MinIO ready"
break
fi
sleep 1
done
# Verify MinIO is running
if ! curl -sS "http://$HOST:9000/minio/health/ready" >/dev/null 2>&1; then
echo "MinIO failed to start"
docker logs "$MINIO_CONTAINER" || true
exit 1
fi
# Export host for subsequent steps
echo "MINIO_HOST=$HOST" >> "$GITHUB_ENV"
- name: Check out repository code
uses: actions/checkout@v3
@ -53,11 +91,12 @@ jobs:
- name: Creating storage configuration
run: |
echo '{
cat > Common/config/local.json << EOF
{
"storage": {
"name": "storage-s3",
"region": "us-east-1",
"endpoint": "http://localhost:9000",
"endpoint": "http://${MINIO_HOST:-127.0.0.1}:9000",
"bucketName": "cache",
"storageFolderName": "files",
"commandOptions": {
@ -75,7 +114,8 @@ jobs:
"persistentStorage": {
"storageFolderName": "files/persistent"
}
}' >> Common/config/local.json
}
EOF
- name: Create MinIO buckets
run: |