Skip to content

Commit

Permalink
Remove trailing spaces in actions file
Browse files Browse the repository at this point in the history
  • Loading branch information
matt335672 committed Mar 4, 2021
1 parent 984e8d1 commit a989426
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
include:

# Minimal 64-bit arch builds
- CC: gcc
feature_set: min
Expand All @@ -38,27 +38,27 @@ jobs:
arch: amd64
os: ubuntu-latest
DISTCHECK: true

- CC: g++
feature_set: max
arch: amd64
os: ubuntu-latest
DISTCHECK: true

- CC: clang
feature_set: max
arch: amd64
os: ubuntu-latest
DISTCHECK: true

# Maximal debug 64-bit arch builds
- CC: gcc
feature_set: max
arch: amd64
os: ubuntu-latest
name_extra: and DEBUG
CONF_FLAGS_EXTRA: "--enable-xrdpdebug"

# Maximal 32-bit arch builds
- CC: gcc
feature_set: max
Expand All @@ -82,12 +82,12 @@ jobs:
runs-on: ${{ matrix.os }}
env:
CC: ${{ matrix.CC }}
# HACK (2020-11-16): github actions dosen't support YAML anchors/aliases to
# avoid repeating long config values. So instead the config values are defined
# as environment variables using a naming convention with fields that come from
# the job config. These environment variables are then referenced as regualr
# environment variables via the naming convention in the "define env" step to

# HACK (2020-11-16): github actions dosen't support YAML anchors/aliases to
# avoid repeating long config values. So instead the config values are defined
# as environment variables using a naming convention with fields that come from
# the job config. These environment variables are then referenced as regualr
# environment variables via the naming convention in the "define env" step to
# define the stardard environment variable used in the rest of the steps.
CONF_FLAGS_amd64_min: "--disable-ipv6 --disable-jpeg --disable-fuse --disable-mp3lame
--disable-fdkaac --disable-opus --disable-rfxcodec --disable-painter
Expand All @@ -98,13 +98,13 @@ jobs:
CONF_FLAGS_i386_max: "--enable-ipv6 --enable-jpeg --enable-fuse --enable-mp3lame
--enable-fdkaac --enable-opus --enable-rfxcodec --enable-painter
--disable-pixman --host=i686-linux"

PKG_CONFIG_PATH_i386: "/usr/lib/i386-linux-gnu/pkgconfig"
CFLAGS_i386: "-m32"
LDFLAGS_i386: "-m32"
steps:
- name: Define feature and arch dependent environment variables
# Note: any "variable=value" written to the $GITHUB_ENV file will be
# Note: any "variable=value" written to the $GITHUB_ENV file will be
# defined as an environment variable for all future steps in this job
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-commands-for-github-actions#setting-an-environment-variable
run: |
Expand All @@ -119,7 +119,7 @@ jobs:
- run: make
- if: ${{ matrix.DISTCHECK }}
run: make distcheck

cppcheck:
name: cppcheck
runs-on: ubuntu-latest
Expand Down

0 comments on commit a989426

Please sign in to comment.