Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cloud #2

Merged
merged 36 commits into from
Nov 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
9ccb447
feat: add retry and aaaa plugin to plugin.cfg
Jan 14, 2022
6b1a6a0
fix: : add build stage to dockerfile
yeganeahmadnejad Jan 15, 2022
1eda2c5
fix: to be able to copy files to build stage
yeganeahmadnejad Jan 15, 2022
759315b
delete: unnecessary github action
yeganeahmadnejad Jan 15, 2022
34adb4e
delete: unnecessary github action
yeganeahmadnejad Jan 15, 2022
cebdeb9
delete: unnecessary github action
yeganeahmadnejad Jan 15, 2022
a8af53c
delete: unnecessary github action
yeganeahmadnejad Jan 15, 2022
4d73488
delete: unnecessary github action
yeganeahmadnejad Jan 15, 2022
2927816
delete: unnecessary github action
yeganeahmadnejad Jan 15, 2022
894663e
feat: add CI to build and push coredns
yeganeahmadnejad Jan 15, 2022
9ab7fbc
fix: update CI action
yeganeahmadnejad Jan 15, 2022
3e68036
remove tag
yeganeahmadnejad Jan 17, 2022
444ba72
fix: update dockerfile
yeganeahmadnejad Jan 17, 2022
24b866d
fix: update workflow action
yeganeahmadnejad Jan 17, 2022
a8bb953
fix: add build job to actions
yeganeahmadnejad Jan 18, 2022
a6c4c64
fix: fix CI
yeganeahmadnejad Jan 18, 2022
56d8582
fix: add golan version to build section
yeganeahmadnejad Jan 18, 2022
288d4a5
fix: fix ci chain
yeganeahmadnejad Jan 18, 2022
a6804d7
fix: fix dockerfile builder stage
yeganeahmadnejad Jan 18, 2022
287539e
fix(ci) : update CI
yeganeahmadnejad Jan 21, 2022
883ab54
fix: update Dockerfile
yeganeahmadnejad Jan 21, 2022
4333d19
fix: update Dockerfile
yeganeahmadnejad Jan 21, 2022
3dff2e5
chore: update readme
Jan 21, 2022
ba3b3d2
fix: ci workflow
yeganeahmadnejad Jan 21, 2022
131b3ed
feat: update plugin chain to support retry for zonefile
Jan 26, 2022
c961b00
Merge branch 'master' into v1.8.6.1
m-yosefpor Jul 24, 2022
f5eabcd
Merge pull request #1 from snapp-incubator/v1.8.6.1
m-yosefpor Jul 24, 2022
3fd502d
fix
m-yosefpor Jul 24, 2022
6019197
fix
m-yosefpor Jul 24, 2022
369ebbd
fix ci
m-yosefpor Jul 24, 2022
0317f1b
fix
m-yosefpor Jul 24, 2022
67c41c6
Merge branch 'master' into cloud
m-yosefpor Nov 25, 2023
3a0b289
fix
m-yosefpor Nov 25, 2023
e85b1f6
remove yamllint
m-yosefpor Nov 25, 2023
c2911f1
fix dockerfile
m-yosefpor Nov 25, 2023
bfb2d05
fix branch
m-yosefpor Nov 25, 2023
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: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
*
!coredns
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ updates:
groups:
dev-dependencies:
patterns:
- "*"
- "*"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
groups:
dev-dependencies:
patterns:
- "*"
- "*"
52 changes: 52 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
name: ci
on:
push:
branches: [ master ]
tags: [ v* ]
pull_request:
branches: [ master ]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.20.0'
- run: go test -v ./... -covermode=atomic -coverprofile=coverage.out
- uses: codecov/codecov-action@v1
with:
files: coverage.out
docker:
name: docker
runs-on: ubuntu-latest
needs:
- test
steps:
- uses: actions/checkout@v2
- uses: docker/setup-qemu-action@v1
- uses: docker/setup-buildx-action@v1
- uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/metadata-action@v3
id: meta
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- uses: docker/build-push-action@v2
with:
file: "Dockerfile"
context: .
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
27 changes: 0 additions & 27 deletions .github/workflows/cifuzz.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/depsreview.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/docker.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/go.coverage.yml

This file was deleted.

83 changes: 0 additions & 83 deletions .github/workflows/go.test.yml

This file was deleted.

42 changes: 0 additions & 42 deletions .github/workflows/make.doc.yml

This file was deleted.

Loading
Loading