# Export .env variables if .env file exists
# https://stackoverflow.com/a/34093548
set -a
[ -f .env ] && source .env
set +a
Unfortunately Oracle databases aren’t compatible with the new Apple Silicon CPU architecture. Due to this fact you’re not able to run an Oracle XE image with TestContainers on your brand-new MacBook, but there’s a workaround!
TLDR;
Install colima
Run colima start --arch x86_64 --memory 4
Set TestContainers env vars
- Establish a clear understanding of the issue
- Ask issue reporter/lead about issue if needed
- Reproduce the issue
- Is it a workflow that is causing the issue
- Is it particular data that is causing the issue
- Is it a combination of the above
- Is there a timing issue or a race condition issue
This assumes you have a fast memory logging system.
error
- Log critical system errors only (not user errors)warn
- Log things that are potential errors or can become errorsinfo
(default) - Logs info about events in the systemdebug
- Log more detailed info about debugging
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pipeline | |
on: | |
push: | |
jobs: | |
log-json: | |
name: Run test command & log github json | |
runs-on: | |
- self-hosted | |
steps: |
- Do not use
@Data
and@EqualsAndHashCode
- Use
@Getter
and@Setter
- Don't forget to exclude lazy attributes if you use
@ToString
- Don't forget to add
@NoArgsConstructor
if you use@Builder
or@AllArgsConstructor
or@RequiredArgsConstructor
- Explanation for rules above: Lombok and JPA: What may go wrong?
- Use
@Builder
if setting lots of different fields
NewerOlder