diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-23 23:20:31 +0000 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-24 00:05:19 +0000 |
commit | 4b0959458c821ef26990fe1fe5931d552512526d (patch) | |
tree | bfd443f3a00207dac26c81ef7ccd2ce5bfe59449 /.github | |
parent | add .gitattributes (diff) | |
download | blog-4b0959458c821ef26990fe1fe5931d552512526d.tar.gz blog-4b0959458c821ef26990fe1fe5931d552512526d.zip |
makefile_escaping: set up CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/makefile-escaping.yml | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/.github/workflows/makefile-escaping.yml b/.github/workflows/makefile-escaping.yml new file mode 100644 index 0000000..e1a9af9 --- /dev/null +++ b/.github/workflows/makefile-escaping.yml @@ -0,0 +1,109 @@ +name: Escaping characters in Makefile + +on: [push, pull_request] + +jobs: + quoting_arguments: + name: Quoting arguments + runs-on: ubuntu-18.04 + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Make Makefile + run: | + cd makefile_escaping + cp prologue.mk Makefile + cat quoting_args.mk >> Makefile + - name: make test + run: | + cd makefile_escaping + diff <( echo "$expected" ) <( make test ) + env: + expected: |- + printf '%s\n' Same line? + Same + line? + printf '%s\n' 'Same line?' + Same line? + printf '%s\n' $test_var + Same + line? + printf '%s\n' "$test_var" + Same line? + escaping_quotes: + name: Escaping quotes + runs-on: ubuntu-18.04 + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Make Makefile + run: | + cd makefile_escaping + cp prologue.mk Makefile + cat quotes.mk >> Makefile + - name: make test + run: | + cd makefile_escaping + diff <( echo "$expected" ) <( make test ) + env: + expected: |- + printf '%s\n' 'Includes '\'' quote' + Includes ' quote + bash -c 'printf '\''%s\n'\'' '\''Includes '\''\'\'''\'' quote'\''' + Includes ' quote + bash -c 'bash -c '\''printf '\''\'\'''\''%s\n'\''\'\'''\'' '\''\'\'''\''Includes '\''\'\'''\''\'\''\'\'''\'''\''\'\'''\'' quote'\''\'\'''\'''\''' + Includes ' quote + shell_output: + name: Shell output + runs-on: ubuntu-18.04 + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Make Makefile + run: | + cd makefile_escaping + cp prologue.mk Makefile + cat shell.mk >> Makefile + - name: make test + run: | + cd makefile_escaping + diff <( echo "$expected_includes_quote" ) <( mkdir -p -- "Includes ' quote" && cd -- "Includes ' quote" && make -f ../Makefile test ) + diff <( echo "$expected_maybe_comment" ) <( mkdir -p -- 'Maybe a comment #' && cd -- 'Maybe a comment #' && make -f ../Makefile test ) + diff <( echo "$expected_variable_reference" ) <( mkdir -p -- 'Variable ${reference}' && cd -- 'Variable ${reference}' && make -f ../Makefile test ) + env: + expected_includes_quote: |- + Includes ' quote + Includes ' quote + Includes ' quote + Includes ' quote + expected_maybe_comment: |- + Maybe a comment # + Maybe a comment # + Maybe a comment # + Maybe a comment # + expected_variable_reference: |- + Variable ${reference} + Variable ${reference} + Variable ${reference} + Variable ${reference} + env_variables: + name: Environment variables + runs-on: ubuntu-18.04 + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Make Makefile + run: | + cd makefile_escaping + cp prologue.mk Makefile + cat env_vars.mk >> Makefile + - name: make test + run: | + cd makefile_escaping + diff <( echo "$expected" ) <( test_var="Quote ' "'and variable ${reference}' make test ) + env: + expected: |- + Quote ' and variable ${reference} + Quote ' and variable ${reference} + Quote ' and variable ${reference} + Quote ' and variable ${reference} |