Skip to content

Commit

Permalink
fix: update APT repositories for wfe-base images (#360)
Browse files Browse the repository at this point in the history
### Description

update APT repositories for wfe-base images
fixes: https://splunk.atlassian.net/browse/ADDON-78080


### Checklist

- [ ] `README.md` has been updated or is not required
- [ ] push trigger tests
- [ ] manual release test
- [ ] automated releaes test
- [ ] pull request trigger tests
- [ ] schedule trigger tests
- [ ] workflow errors/warnings reviewed and addressed

### Testing done 

https://github.com/splunk/splunk-add-on-for-unix-and-linux/actions/runs/13074385527
  • Loading branch information
mbruzda-splunk authored Jan 31, 2025
2 parents 3197d65 + 06c6979 commit 160efce
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- [ ] `README.md` has been updated or is not required
- [ ] push trigger tests
- [ ] manual release test
- [ ] automated releaes test
- [ ] automated releases test
- [ ] pull request trigger tests
- [ ] schedule trigger tests
- [ ] workflow errors/warnings reviewed and addressed
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/reusable-build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,7 @@ jobs:
- name : Job summary
continue-on-error: true
run: |
sudo apt-get update
sudo apt-get install -y libxml2-utils
junit_xml_file=$(find "test-results" -name "*.xml" -type f 2>/dev/null | head -n 1)
Expand Down Expand Up @@ -468,6 +469,7 @@ jobs:
- name : Job summary
continue-on-error: true
run: |
sudo apt-get update
sudo apt-get install -y libxml2-utils
junit_xml_file=$(find "test-results" -name "*.xml" -type f 2>/dev/null | head -n 1)
Expand Down Expand Up @@ -1405,6 +1407,7 @@ jobs:
- name: Parse JUnit XML
if: ${{ !cancelled() }}
run: |
apt-get update
apt-get install -y libxml2-utils
junit_xml_path="${{ needs.setup.outputs.directory-path }}/test-results"
junit_xml_file=$(find "$junit_xml_path" -name "*.xml" -type f 2>/dev/null | head -n 1)
Expand Down Expand Up @@ -1660,6 +1663,7 @@ jobs:
- name: Parse JUnit XML
if: ${{ !cancelled() }}
run: |
apt-get update
apt-get install -y libxml2-utils
junit_xml_path="${{ needs.setup.outputs.directory-path }}/test-results"
junit_xml_file=$(find "$junit_xml_path" -name "*.xml" -type f 2>/dev/null | head -n 1)
Expand Down Expand Up @@ -1937,6 +1941,7 @@ jobs:
- name: Parse JUnit XML
if: ${{ !cancelled() }}
run: |
apt-get update
apt-get install -y libxml2-utils
junit_xml_path="${{ needs.setup.outputs.directory-path }}/test-results"
junit_xml_file=$(find "$junit_xml_path" -name "*.xml" -type f 2>/dev/null | head -n 1)
Expand Down Expand Up @@ -2212,6 +2217,7 @@ jobs:
- name: Parse JUnit XML
if: ${{ !cancelled() }}
run: |
apt-get update
apt-get install -y libxml2-utils
junit_xml_path="${{ needs.setup.outputs.directory-path }}/test-results"
junit_xml_file=$(find "$junit_xml_path" -name "*.xml" -type f 2>/dev/null | head -n 1)
Expand Down Expand Up @@ -2486,6 +2492,7 @@ jobs:
- name: Parse JUnit XML
if: ${{ !cancelled() }}
run: |
apt-get update
apt-get install -y libxml2-utils
junit_xml_path="${{ needs.setup.outputs.directory-path }}/test-results"
junit_xml_file=$(find "$junit_xml_path" -name "*.xml" -type f 2>/dev/null | head -n 1)
Expand Down Expand Up @@ -2754,6 +2761,7 @@ jobs:
- name: Parse JUnit XML
if: ${{ !cancelled() }}
run: |
apt-get update
apt-get install -y libxml2-utils
junit_xml_path="${{ needs.setup.outputs.directory-path }}/test-results"
junit_xml_file=$(find "$junit_xml_path" -name "*.xml" -type f 2>/dev/null | head -n 1)
Expand Down

0 comments on commit 160efce

Please sign in to comment.