HPCC-32873 Prevent concurrent write to same file when spraying/despraying #20997
Workflow file for this run
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
name: Run helm chart tests | |
on: | |
pull_request: | |
branches: | |
- "master" | |
- "candidate-*" | |
- "!candidate-7.8.*" | |
- "!candidate-7.6.*" | |
- "!candidate-7.4.*" | |
- "!candidate-7.2.*" | |
- "!candidate-7.0.*" | |
- "!candidate-6.*" | |
jobs: | |
pre_job: | |
# continue-on-error: true # Uncomment once integration is finished | |
runs-on: ubuntu-20.04 | |
# Map a step output to a job output | |
outputs: | |
helm: ${{ steps.skip_check.outputs.helm }} | |
steps: | |
- id: skip_check | |
uses: hpcc-systems/github-actions/changed-modules@main | |
with: | |
github_token: ${{ github.token }} | |
build: | |
name: "Check helm chart lint" | |
runs-on: ubuntu-20.04 | |
needs: pre_job | |
if: ${{ github.repository == 'hpcc-systems/HPCC-Platform' && needs.pre_job.outputs.helm }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: false | |
- uses: azure/setup-helm@v3 | |
with: | |
version: 'latest' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
id: install | |
- name: Install additional tools | |
working-directory: . | |
run: wget https://github.com/zegl/kube-score/releases/download/v1.8.1/kube-score_1.8.1_linux_amd64 && sudo mv kube-score_1.8.1_linux_amd64 /usr/bin/kube-score && sudo chmod +x /usr/bin/kube-score | |
- name: Validate Helm Templates | |
working-directory: ./testing/helm | |
run: ./run.sh | |
- name: Check for changes in helm output for default values | |
working-directory: . | |
run: | | |
resultcode=0 | |
mkdir ${{ runner.temp }}/new | |
mkdir ${{ runner.temp }}/old | |
#Generate the output for the default values file, and each of the specialised test files. | |
#Check to see if anything has changed between old and new, and report the differences | |
helm template helm/hpcc > ${{ runner.temp }}/new/output.txt | |
for file in testing/helm/tests/*.yaml | |
do | |
tail=$(basename $file) | |
helm template helm/hpcc --values $file > ${{ runner.temp }}/new/$tail.txt | |
done | |
git fetch --no-tags --prune --progress --no-recurse-submodules --quiet --depth=1 origin ${{ github.base_ref }} | |
echo git checkout ${{ github.base_ref }} | |
git checkout ${{ github.base_ref }} | |
helm template helm/hpcc > ${{ runner.temp }}/old/output.txt | |
for file in testing/helm/tests/*.yaml | |
do | |
tail=$(basename $file) | |
helm template helm/hpcc --values $file > ${{ runner.temp }}/old/$tail.txt | |
done | |
diff ${{ runner.temp }}/old/output.txt ${{ runner.temp }}/new/output.txt | |
if [ $? -ne 0 ] | |
then | |
resultcode=1 | |
else | |
#Only check for differences in the specialised test files if the default values file is the same | |
for file in testing/helm/tests/*.yaml | |
do | |
tail=$(basename $file) | |
diff ${{ runner.temp }}/old/$tail.txt ${{ runner.temp }}/new/$tail.txt | |
if [ $? -ne 0 ] | |
then | |
resultcode=1 | |
fi | |
done | |
fi | |
exit $resultcode |