Skip to content

Commit

Permalink
Allow builds to keep running if one fails
Browse files Browse the repository at this point in the history
  • Loading branch information
elguero committed Dec 28, 2021
1 parent d4bdc4d commit dc7803d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 18 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/buildcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Run CI
- name: Specify Build Target
run: |
echo "SPECIFICTARGET=\"\"" >> $GITHUB_ENV
- if: always()
name: Run CI
run: ci/${{ matrix.os }}.sh
2 changes: 1 addition & 1 deletion ci/centos-stream.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ dnf-builddep -y ./displaylink.spec

chown `id -u`:`id -g` -R .

make ${{ env.SPECIFICTARGET }}
make $(SPECIFICTARGET)
2 changes: 1 addition & 1 deletion ci/centos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ yum-builddep -y ./displaylink.spec

chown `id -u`:`id -g` -R .

make ${{ env.SPECIFICTARGET }}
make $(SPECIFICTARGET)
2 changes: 1 addition & 1 deletion ci/fedora.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ cd /base-src

dnf builddep -y --spec ./displaylink.spec

make ${{ env.SPECIFICTARGET }}
make $(SPECIFICTARGET)
2 changes: 1 addition & 1 deletion ci/rocky.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ dnf-builddep -y ./displaylink.spec

chown `id -u`:`id -g` -R .

make ${{ env.SPECIFICTARGET }}
make $(SPECIFICTARGET)
13 changes: 0 additions & 13 deletions ci/testbuilding.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,3 @@ make github-release

if [ $? -ne 0 ]; then exit 1; fi
make clean-all

echo "Testing 'make devel'"
make devel
make

if [ $? -ne 0 ]; then exit 1; fi
make clean-all

echo "Testing 'make rawhide'"
make rawhide

if [ $? -ne 0 ]; then exit 1; fi
make clean-all

0 comments on commit dc7803d

Please sign in to comment.