Skip to content

Instantly share code, notes, and snippets.

View Fellmonkey's full-sized avatar

Nikita Fellmonkey

  • 08:13 (UTC +03:00)
View GitHub Profile

Для тех, кто хочет поставить Oracle дома:

  1. Важно, чтобы был установлен Docker Desktop.
  2. Далее в командной строке введите: docker run -d -p 49161:1521 -p 8080:8080 wnameless/oracle-xe-11g-r2. Он автоматически загрузит образ и создаст контейнер.
  3. После перейдите на http://localhost:8080/apex/apex_admin и авторизуйтесь под: system:oracle
  4. Создайте workspace: все поля student.
  5. Готово.

Unity Testing Setup for GitHub Actions

This document provides instructions for setting up Unity testing in GitHub Actions CI/CD pipeline.

Prerequisites

To run Unity tests in GitHub Actions, you need to obtain a Unity license and configure it as a repository secret.

Important: The Unity license must be generated using the same approach as described below because Unity requires the license file (.alf) to be obtained on the same machine where the actions will be executed. If the machine ID in the license doesn't match the machine ID where Unity is running, Unity will refuse to continue execution due to machine ID mismatch.

# Manually run, generates a unity license file that should be saved into GitHub > Settings > Secrets
name: 🔑 Generate Unity License File (ALF)
on: workflow_dispatch
jobs:
GetUnityLicenseFile:
name: Generate Unity License File
runs-on: ubuntu-latest