-
Notifications
You must be signed in to change notification settings - Fork 622
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60a2022
commit abb1a71
Showing
2 changed files
with
56 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
on: | ||
workflow_call: | ||
|
||
env: | ||
CCM_VERSION: "6e71061146f7ae67b84ccd2b1d90d7319b640e4c" | ||
|
||
jobs: | ||
setup-environment: | ||
name: Setup Integration Tests Environment | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up cache for SDKMAN | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.sdkman | ||
key: ${{ runner.os }}-sdkman | ||
|
||
- name: Set up cache for pip | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install Java | ||
run: | | ||
echo "Installing SDKMAN..." | ||
curl -s "https://get.sdkman.io" | bash | ||
source "$HOME/.sdkman/bin/sdkman-init.sh" | ||
echo "sdkman_auto_answer=true" >> ~/.sdkman/etc/config | ||
echo "Installing Java versions..." | ||
sdk install java 11.0.24-zulu | ||
sdk install java 17.0.12-zulu | ||
sdk default java 11.0.24-zulu | ||
sdk use java 11.0.24-zulu | ||
echo "JAVA11_HOME=$JAVA_HOME_11_X64" >> $GITHUB_ENV | ||
echo "JAVA17_HOME=$JAVA_HOME_17_X64" >> $GITHUB_ENV | ||
echo "JAVA_HOME=$JAVA_HOME_11_X64" >> $GITHUB_ENV | ||
echo "PATH=$PATH" >> $GITHUB_ENV | ||
- name: Install CCM | ||
run: | | ||
echo "Creating Python virtual environment..." | ||
VENV_DIR="$HOME/venv" | ||
python3 -m venv $VENV_DIR | ||
source $VENV_DIR/bin/activate | ||
pip install --upgrade pip setuptools | ||
echo "Installing CCM..." | ||
pip install "git+https://github.com/riptano/ccm.git@${CCM_VERSION}" |