1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-forgejo synced 2024-09-19 01:46:16 +00:00

Merge pull request 'add example file illustrating expressions' (#30) from dachary/setup-forgejo:wip-expression into main

Reviewed-on: https://code.forgejo.org/actions/setup-forgejo/pulls/30
Reviewed-by: earl-warren <earl-warren@noreply.code.forgejo.org>
This commit is contained in:
earl-warren 2023-07-05 19:07:02 +00:00
commit 23e4bdbd6a
3 changed files with 108 additions and 1 deletions

View file

@ -10,7 +10,7 @@ jobs:
./forgejo.sh setup root admin1234 codeberg.org/forgejo/forgejo 1.19
./forgejo-runner.sh setup
export FORGEJO_RUNNER_LOGS=forgejo-runner.log
for example in echo container ; do
for example in echo container expression ; do
echo "============================ example-$example ==================="
./forgejo-test-helper.sh run_workflow testdata/example-$example http://root:admin1234@$(cat forgejo-ip):3000 root example-$example setup-forgejo $(cat forgejo-token)
done

View file

@ -0,0 +1 @@
ONE

View file

@ -0,0 +1,106 @@
on: [push]
env:
KEY1: value1
KEY2: value2
jobs:
test:
runs-on: docker
steps:
- name: environment
run: |
set -x
test "KEY1=${{ env.KEY1 }}" = "KEY1=value1"
test "KEY2=$KEY2" = "KEY2=value2"
- name: if skip one
run: false
if: env.KEY1 == 'nogood'
- name: if skip two
run: false
if: ${{ env.KEY1 == 'nogood' }}
- name: if does not skip
id: conditional
run: echo 'check=good' >> $GITHUB_OUTPUT
if: env.KEY1 == 'value1'
- name: verify if did not skip
run: test ${{ steps.conditional.outputs.check }} = good
- name: logical
run: |
set -x
test "${{ fromJSON('["one","two"]')[0] }}" = "one"
test "${{ !false }}" = "true"
test "${{ !( 1 > 2 ) }}" = "true"
test "${{ 1 >= 1 }}" = "true"
test "${{ 1 <= 1 }}" = "true"
test "${{ 1 < 2 }}" = "true"
test "${{ 1 == 1 }}" = "true"
test "${{ 1 != 2 }}" = "true"
test "${{ true && true }}" = "true"
test "${{ true || false }}" = "true"
- name: literals
run: |
set -x
test "${{ 0.9 }}" = "0.9"
test "${{ env.NULL == null }}" = "true"
test "${{ true == true }}" = "true"
test "${{ true == false }}" = "false"
test "${{ 'something' }}" = "something"
test "${{ 'inside''quote' }}" = "inside'quote"
test "${{ 'something' == 'SOMETHING' }}" = "true"
- name: contains
run: |
set -x
test "${{ contains('number 0.9', 0.9) }}" = "true"
test "${{ contains('zeroonetwo', 'one') }}" = "true"
test "${{ contains('zeroonetwo', 'notfound') }}" = "false"
test "${{ contains(fromJSON('["one","two"]'), 'one') }}" = "true"
test "${{ contains(fromJSON('["one","two"]'), 'notfound') }}" = "false"
- name: startsWith
run: |
set -x
test "${{ startsWith('0.9 number', 0.9) }}" = "true"
test "${{ startsWith('some number', 'SOME') }}" = "true"
test "${{ startsWith('number', '0.9') }}" = "false"
- name: endsWith
run: |
set -x
test "${{ endsWith('number 0.9', 0.9) }}" = "true"
test "${{ endsWith('number some', 'SOME') }}" = "true"
test "${{ endsWith('number', '0.9') }}" = "false"
- name: format
run: |
set -x
test "${{ format('{0} and {1}', 'A', 'B') }}" = "A and B"
test "${{ format('{{ and }}', 'A', 'B') }}" = "{ and }"
- name: join
run: |
set -x
test "${{ join(fromJSON('["one","two"]')) }}" = "one,two"
test "${{ join(fromJSON('["one","two"]'), '+') }}" = "one+two"
- name: toJSON
run: |
set -x
test "${{ toJSON(0.9) }}" = "0.9"
- name: fromJSON
run: |
set -x
test "${{ fromJSON('["one","two"]')[0] }}" = 'one'
- name: hashFiles
run: |
set -x
hash="bd52020371c038c4ad38a8d2df05dfa1a220d40fbe1ae83b63d6010cb527e531"
test "${{ hashFiles('testdata/example-expression/.forgejo/fileone.txt') }}" = $hash
test "${{ hashFiles('testdata/example-expression/.forgejo/fileone.*') }}" = $hash