Clean up the way diffs are printed and update test to not rely on ext… #2984
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
on: push | |
name: CI | |
jobs: | |
checks: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.2' | |
- shell: bash | |
run: | | |
make manifests | |
if [[ -n $(git status -s) ]] ; then | |
echo "Generating manifests leaves tracked files in a modified state." | |
echo "Ensure to include updated manifests in this PR." | |
echo "This is usually done by running 'make manifests' and running 'git add ...' for the files that was modified by generating manifests." | |
git status -s | |
git diff | |
exit 1 | |
fi | |
- shell: bash | |
run: | | |
make test | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: always() # always run even if the previous step fails | |
with: | |
report_paths: '*-results-junit.xml' | |
build: | |
needs: checks | |
name: Run Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.2' | |
- name: Run Gosec Security Scanner | |
run: | | |
export PATH=$PATH:$(go env GOPATH)/bin | |
go install github.com/securego/gosec/v2/cmd/gosec@latest | |
gosec -exclude-dir images/logscale-dummy -exclude-generated ./... | |
- name: Run Staticcheck | |
uses: dominikh/[email protected] | |
with: | |
version: "2024.1.1" | |
install-go: false | |
- name: operator image | |
run: make docker-build-operator IMG=humio/humio-operator:${{ github.sha }} | |
- name: helper image | |
run: make docker-build-helper IMG=humio/humio-operator-helper:${{ github.sha }} | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install six | |
python -m pip install --upgrade retry | |
pip install retry | |
- name: CrowdStrike Container Image Scan Operator | |
uses: crowdstrike/container-image-scan-action@v1 | |
with: | |
falcon_client_id: 1cd30708cb31442f85a6eec83279fe7b | |
container_repository: humio/humio-operator | |
container_tag: ${{ github.sha }} | |
env: | |
FALCON_CLIENT_SECRET: "${{ secrets.FALCON_CLIENT_SECRET }}" | |
- name: CrowdStrike Container Image Scan Operator Helper | |
uses: crowdstrike/container-image-scan-action@v1 | |
with: | |
falcon_client_id: 1cd30708cb31442f85a6eec83279fe7b | |
container_repository: humio/humio-operator-helper | |
container_tag: ${{ github.sha }} | |
env: | |
FALCON_CLIENT_SECRET: "${{ secrets.FALCON_CLIENT_SECRET }}" |