Skip to content

Commit

Permalink
Add Ubuntu platform test for lsstinstall.
Browse files Browse the repository at this point in the history
  • Loading branch information
ktlim committed Jan 6, 2022
1 parent 1a049d4 commit 5e847e3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/acceptance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,19 @@ jobs:
centos-lsstinstall:
strategy:
matrix:
container: ["centos:7", "rockylinux:8.5"]
container: ["centos:7", "rockylinux:8.5", "ubuntu:latest"]
name: Linux lsstinstall test
runs-on: ubuntu-latest
container: ${{ matrix.container }}
steps:
- uses: actions/checkout@v2
- name: install prereqs
run: |
if [[ ${{ matrix.container }} == "rockylinux:8.5" ]]; then
if [ "${{ matrix.container }}" = "rockylinux:8.5" ]; then
dnf install -y diffutils
elif [ "${{ matrix.container }}" = "ubuntu:latest" ]; then
apt-get update
apt-get install -y curl
fi
- name: dryrun unit tests
run: bash test-lsstinstall.bash
Expand Down

0 comments on commit 5e847e3

Please sign in to comment.