Github Actions test exporting variables [ci skip]
This commit is contained in:
parent
4f0d9f3c97
commit
cec93a900b
2 changed files with 6 additions and 1 deletions
6
.github/workflows/ci-main.yml
vendored
6
.github/workflows/ci-main.yml
vendored
|
@ -24,7 +24,11 @@ jobs:
|
|||
key: linux-01-master
|
||||
|
||||
- name: Ubuntu 20.04
|
||||
run: ./.github/workflows/ci-scripts/ubuntu.sh master 2004 false scons gcc g++ 17 release true
|
||||
run: |
|
||||
export HI="hi"
|
||||
echo "HI: $HI"
|
||||
echo $GITHUB_REF | awk 'BEGIN { FS = "/" } ; { print $3 }'
|
||||
./.github/workflows/ci-scripts/ubuntu.sh master 2004 false scons gcc g++ 17 release true
|
||||
|
||||
linux-02-master:
|
||||
runs-on: ubuntu-20.04
|
||||
|
|
1
.github/workflows/ci-scripts/ubuntu.sh
vendored
1
.github/workflows/ci-scripts/ubuntu.sh
vendored
|
@ -22,6 +22,7 @@ echo "CXX_STD: $CXX_STD"
|
|||
echo "CFG: $CFG"
|
||||
echo "LTO: $LTO"
|
||||
echo "CACHE_DIR: $CACHE_DIR"
|
||||
echo "HI: $HI"
|
||||
|
||||
echo FROM wesnoth/wesnoth:"$IMAGE"-"$BRANCH" > utils/dockerbuilds/travis/Dockerfile-travis-"$IMAGE"-"$BRANCH"
|
||||
echo COPY ./ /home/wesnoth-travis/ >> utils/dockerbuilds/travis/Dockerfile-travis-"$IMAGE"-"$BRANCH"
|
||||
|
|
Loading…
Add table
Reference in a new issue