Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .markdownlintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"MD013": false,
"MD025": false,
"MD060": false,
"MD010": false
}
4 changes: 2 additions & 2 deletions Lessons/02-core-ci-skills.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## 2.1 CI Platform Comparison

| Platform | Config File | Free Tier (cloud) | Self-hostable | Best For |
|----------|-------------|-------------------|---------------|----------|
| --- | --- | --- | --- | --- |
| **GitHub Actions** | `.github/workflows/*.yml` | 2,000 min/mo (public repos: unlimited) | ✅ | GitHub projects |
| **GitLab CI/CD** | `.gitlab-ci.yml` | 400 min/mo | ✅ | Full DevOps suite |
| **Jenkins** | `Jenkinsfile` | ❌ (no cloud offering) | ✅ free | Enterprise customization |
Expand Down Expand Up @@ -36,7 +36,7 @@ Example pipeline with 3 parallel jobs, each taking 5 minutes:
Runner OS also affects billing on some platforms. GitHub Actions applies a multiplier to non-Linux runners:

| OS | GitHub Actions multiplier |
|----|--------------------------|
| --- | --- |
| Linux (ubuntu-*) | 1× (base rate) |
| Windows (windows-*) | 2× |
| macOS (macos-*) | 10× |
Expand Down
2 changes: 1 addition & 1 deletion Lessons/03-intermediate-ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Repository:
```

| File | Responsibility | Runs on |
|------|---------------|---------|
| --- | --- | --- |
| `Dockerfile` | How to build the image, layer by layer | Docker daemon on the CI runner |
| `.dockerignore` | Which files to exclude from the build context | Docker daemon, before any layer |
| `docker.yml` | When to trigger the build, how to authenticate, where to push | GitHub Actions runner |
Expand Down
Loading
Loading