Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
422c474
Add SAMcli test workflow for macOS
ayush-panta Jul 16, 2025
7a0bc33
Changed workflow trigger
ayush-panta Jul 16, 2025
3399c34
ci: added path
ayush-panta Jul 16, 2025
69bd146
ci: fixes for workflow testing
ayush-panta Jul 16, 2025
5ee232f
ci: quick fix for unit tests
ayush-panta Jul 16, 2025
fb9e655
ci: more fixes
ayush-panta Jul 16, 2025
f4d58e1
ci: go version update
ayush-panta Jul 16, 2025
fc67686
ci: fixing local Finch path
ayush-panta Jul 17, 2025
507d373
ci: changing vm to qemu
ayush-panta Jul 17, 2025
d6d7bd5
ci: use finch-daemon directly
ayush-panta Jul 17, 2025
29486e9
ci: fixed containerd install
ayush-panta Jul 17, 2025
9a572a3
ci: direct install containerd
ayush-panta Jul 17, 2025
9c75d5c
ci: skip containerd test
ayush-panta Jul 17, 2025
a63628d
ci: trying to run in docker
ayush-panta Jul 17, 2025
bf745d7
ci: more docker debug
ayush-panta Jul 17, 2025
2964cca
ci: clean linux test
ayush-panta Jul 17, 2025
f1b251c
ci: quick fix
ayush-panta Jul 17, 2025
514b26c
ci: indent fix
ayush-panta Jul 17, 2025
6449c59
ci: finch-daemon make fix
ayush-panta Jul 17, 2025
7fdd92b
ci: add nerdctl
ayush-panta Jul 17, 2025
7b6ae56
ci: more daemon fix
ayush-panta Jul 17, 2025
d19865d
ci: refactor with finch again
ayush-panta Jul 17, 2025
ba15c43
ci: make finch for setup (again...)
ayush-panta Jul 17, 2025
98d17dc
ci: verify daemon path
ayush-panta Jul 17, 2025
52676b5
ci: fixed daemon path hopefully
ayush-panta Jul 17, 2025
8c2fc38
ci: dynamic daemon path finding
ayush-panta Jul 17, 2025
69f9461
ci: desperation
ayush-panta Jul 17, 2025
682ecc9
ci: trying daemon binary AGAIN
ayush-panta Jul 17, 2025
6742239
ci: why is nerdctl missing again
ayush-panta Jul 17, 2025
83c7594
ci: SAM is back in
ayush-panta Jul 17, 2025
7e85ffd
ci: created docker host
ayush-panta Jul 17, 2025
a2bb786
ci: explicit docker host
ayush-panta Jul 17, 2025
db8018a
ci: added canary
ayush-panta Jul 17, 2025
7c1bb4a
ci: add buildkit
ayush-panta Jul 17, 2025
e34b2ea
ci: setup env
ayush-panta Jul 17, 2025
6d003d0
ci: added openid auth
ayush-panta Jul 18, 2025
466633c
ci: soem container config
ayush-panta Jul 18, 2025
60f6216
ci: move container after daemon start
ayush-panta Jul 18, 2025
7079105
ci: more fixes to daemon/container registry
ayush-panta Jul 18, 2025
b15a38e
ci: v1 to v1.35
ayush-panta Jul 18, 2025
fe34f65
ci: trying other tests
ayush-panta Jul 18, 2025
8bde2c8
ci: try config
ayush-panta Jul 18, 2025
9a1e192
ci: quick fix
ayush-panta Jul 18, 2025
2661027
ci: remove old test
ayush-panta Jul 24, 2025
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
72 changes: 36 additions & 36 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
# - When a third-party action is added (i.e., `uses`), please also add it to `download-licenses` in Makefile.
# - When a job is added/removed/renamed, please make corresponding changes in ci-docs.yaml.
name: CI
on:
push:
branches:
- main
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
- '.github/workflows/e2e-macos.yaml'
- '.github/workflows/e2e-windows.yaml'
- '.github/workflows/e2e-linux.yaml'
- 'contrib/packaging/**'
- 'deps/**'
- 'finch.yaml.d/**'
- 'winres'
- 'Makefile*'
- '.golangci.yaml'
- '!contrib/hello-finch/**'
pull_request:
branches:
- main
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
- '.github/workflows/e2e-macos.yaml'
- '.github/workflows/e2e-windows.yaml'
- '.github/workflows/e2e-linux.yaml'
- 'contrib/packaging/**'
- 'deps/**'
- 'finch.yaml.d/**'
- 'winres'
- 'Makefile*'
- '.golangci.yaml'
- '!contrib/hello-finch/**'
workflow_dispatch:
# on:
# push:
# branches:
# - main
# paths:
# - '**.go'
# - 'go.mod'
# - 'go.sum'
# - '.github/workflows/e2e-macos.yaml'
# - '.github/workflows/e2e-windows.yaml'
# - '.github/workflows/e2e-linux.yaml'
# - 'contrib/packaging/**'
# - 'deps/**'
# - 'finch.yaml.d/**'
# - 'winres'
# - 'Makefile*'
# - '.golangci.yaml'
# - '!contrib/hello-finch/**'
# pull_request:
# branches:
# - main
# paths:
# - '**.go'
# - 'go.mod'
# - 'go.sum'
# - '.github/workflows/e2e-macos.yaml'
# - '.github/workflows/e2e-windows.yaml'
# - '.github/workflows/e2e-linux.yaml'
# - 'contrib/packaging/**'
# - 'deps/**'
# - 'finch.yaml.d/**'
# - 'winres'
# - 'Makefile*'
# - '.golangci.yaml'
# - '!contrib/hello-finch/**'
# workflow_dispatch:
permissions:
id-token: write
contents: write
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/lint-pr-title.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# When a third-party action is added (i.e., `uses`), please also add it to `download-licenses` in Makefile.
name: "Lint PR Title"

on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
# on:
# pull_request:
# types:
# - opened
# - edited
# - reopened
# - synchronize

jobs:
main:
Expand Down
Loading
Loading