Skip to content

Commit

Permalink
Added test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
spietras committed Feb 5, 2024
1 parent 4aac70c commit b30e032
Showing 1 changed file with 90 additions and 0 deletions.
90 changes: 90 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
name: Test

# Put 'on' in quotes to avoid YAML parsing error
"on":
# Enable manual triggering
workflow_dispatch: {}
# Run on commits to main branch
push:
branches:
- main
# Run only on changes to relevant files
paths:
- .github/workflows/test.yaml
- src/**
- .sourceignore
# Run also on pull requests to main branch
pull_request:
branches:
- main
# Run only on changes to relevant files
paths:
- .github/workflows/test.yaml
- src/**
- .sourceignore

jobs:
test:
name: Test
# Pin version of Ubuntu to avoid breaking changes
runs-on: ubuntu-22.04
# Use reasonable timeout to avoid stuck workflows
timeout-minutes: 30
strategy:
matrix:
cluster: [main]
permissions:
# Needed to checkout code
contents: read
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Setup Kubernetes
uses: helm/[email protected]
with:
version: v0.21.0
cluster_name: ${{ matrix.cluster }}
kubectl_version: v1.29.1
- name: Setup Flux
uses: fluxcd/flux2/[email protected]
with:
version: v2.2.3
- name: Install Flux in cluster
run: >
flux
install
--version
v2.2.3
- name: Add source to Flux
run: >
flux
create
source
git
main
--url
'https://github.com/${{ github.repository }}'
--commit
'${{ github.sha }}'
--username
${{ github.actor }}
--password
${{ github.token }}
- name: Add Kustomization to Flux
run: >
flux
create
kustomization
main
--source
main
--path
'src/clusters/${{ matrix.cluster }}'
- name: Debug failures
if: failure()
run: |
kubectl -n flux-system get all
flux get all --all-namespaces
kubectl -n flux-system logs deploy/source-controller
kubectl -n flux-system logs deploy/kustomize-controller
kubectl -n flux-system logs deploy/helm-controller

0 comments on commit b30e032

Please sign in to comment.