summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorOz Tiram <[email protected]>2025-12-23 23:45:30 +0100
committerLuke from DC <[email protected]>2025-12-24 06:27:23 +0000
commit69ce842542a9e10ea1960c786ea0233caf27de5a (patch)
tree1f552d77f4fefa0057773e803cbab54df8ed755e /.github/workflows
parentd2e495f16b1f3e57fdb621cd7668bff388d06b6a (diff)
downloadatril-master.tar.bz2
atril-master.tar.xz
build: use shell vs bashHEADmaster
As bash isn't the default shell on ubuntu Signed-off-by: Oz Tiram <[email protected]>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/builds.yml5
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index 81c9ea73..85c607a4 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -104,17 +104,14 @@ jobs:
- name: Build and install mate-desktop from source
run: .github/workflows/mate-desktop.sh ${{env.MATE_DESKTOP_VERSION}} ${{ env.CACHE_PATH }}
# INFO: M-C-C depends mate-desktop 1.27.1+, install finished.
-
-
- name: Disable DVI on ubunut and fedora latest
run: |
- if [[ "${{ matrix.container }}" == "fedora:latest" ]] || [[ "${{ matrix.container }}" == "ubuntu:rolling" ]]; then
+ if [ "${{ matrix.container }}" = "fedora:latest" ] || [ "${{ matrix.container }}" = "ubuntu:rolling" ]; then
echo "DVI_OPTION=-Ddvi=disabled" >> $GITHUB_ENV
echo "Disabling DVI backend on ${{ matrix.container }}"
else
echo "DVI_OPTION=" >> $GITHUB_ENV
echo "Building with DVI backend on ${{ matrix.container }}"
fi
-
- name: Build the source code
run: .github/workflows/builds.sh ${{ matrix.build-system }}