Fixed action code.

This commit is contained in:
Alexander Artemenko 2021-02-02 09:19:57 +03:00
parent 259b5c1988
commit a91d5d125c

View file

@ -1,33 +1,35 @@
name: 'Install Roswell & Qlot' name: 'Install Roswell & Qlot'
runs: runs:
- name: Current Env using: composite
run: | steps:
env | sort -u - name: Current Env
run: |
env | sort -u
- name: Install Roswell - name: Install Roswell
run: | run: |
if [[ "$OS" == "ubuntu-latest" ]]; then if [[ "$OS" == "ubuntu-latest" ]]; then
sudo apt-get -y install git build-essential automake libcurl4-openssl-dev sudo apt-get -y install git build-essential automake libcurl4-openssl-dev
fi fi
if [[ "$OS" == "macos-latest" ]]; then if [[ "$OS" == "macos-latest" ]]; then
brew install automake autoconf curl brew install automake autoconf curl
fi fi
curl -L https://raw.githubusercontent.com/svetlyak40wt/roswell/patches/scripts/install-for-ci.sh | sh curl -L https://raw.githubusercontent.com/svetlyak40wt/roswell/patches/scripts/install-for-ci.sh | sh
echo $HOME/.roswell/bin >> $GITHUB_PATH echo $HOME/.roswell/bin >> $GITHUB_PATH
- name: Upgrade ASDF to the Latest Version - name: Upgrade ASDF to the Latest Version
run: | run: |
ros install asdf ros install asdf
- name: Install Qlot - name: Install Qlot
run: | run: |
ros install qlot ros install qlot
echo .qlot/bin >> $GITHUB_PATH echo .qlot/bin >> $GITHUB_PATH
- name: Install Dependencies - name: Install Dependencies
run: | run: |
rm -fr qlfile rm -fr qlfile
touch qlfile touch qlfile
if [[ "${QUICKLISP_DIST}" == 'ultralisp' ]]; then if [[ "${QUICKLISP_DIST}" == 'ultralisp' ]]; then
echo dist ultralisp http://dist.ultralisp.org/ >> qlfile echo dist ultralisp http://dist.ultralisp.org/ >> qlfile
fi fi
qlot install qlot install