[AAE-7986] Migrate ADF from Travis to Github actions (#8050)

* rebased

* [ci:force]
This commit is contained in:
Marco Carrozzo
2022-12-15 09:27:04 +00:00
committed by GitHub
parent 812352ecdc
commit 70e6d642f3
23 changed files with 933 additions and 53 deletions
+13
View File
@@ -0,0 +1,13 @@
name: "before-install"
description: "launch before_install.sh and then parse env vars"
runs:
using: "composite"
steps:
- name: Before install
shell: bash
run: |
bash -xv ./scripts/ci/job_hooks/before_install.sh "/tmp/github_vars.env"
while read ENVVAR; do
echo "$ENVVAR" >> $GITHUB_ENV
done < "/tmp/github_vars.env"