Fixed action code.
This commit is contained in:
parent
259b5c1988
commit
a91d5d125c
1 changed files with 33 additions and 31 deletions
64
.github/actions/setup/action.yml
vendored
64
.github/actions/setup/action.yml
vendored
|
@ -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: |
|
||||||
- name: Install Roswell
|
env | sort -u
|
||||||
run: |
|
|
||||||
if [[ "$OS" == "ubuntu-latest" ]]; then
|
- name: Install Roswell
|
||||||
sudo apt-get -y install git build-essential automake libcurl4-openssl-dev
|
run: |
|
||||||
fi
|
if [[ "$OS" == "ubuntu-latest" ]]; then
|
||||||
if [[ "$OS" == "macos-latest" ]]; then
|
sudo apt-get -y install git build-essential automake libcurl4-openssl-dev
|
||||||
brew install automake autoconf curl
|
fi
|
||||||
fi
|
if [[ "$OS" == "macos-latest" ]]; then
|
||||||
|
brew install automake autoconf curl
|
||||||
curl -L https://raw.githubusercontent.com/svetlyak40wt/roswell/patches/scripts/install-for-ci.sh | sh
|
fi
|
||||||
|
|
||||||
echo $HOME/.roswell/bin >> $GITHUB_PATH
|
curl -L https://raw.githubusercontent.com/svetlyak40wt/roswell/patches/scripts/install-for-ci.sh | sh
|
||||||
- name: Upgrade ASDF to the Latest Version
|
|
||||||
run: |
|
echo $HOME/.roswell/bin >> $GITHUB_PATH
|
||||||
ros install asdf
|
- name: Upgrade ASDF to the Latest Version
|
||||||
- name: Install Qlot
|
run: |
|
||||||
run: |
|
ros install asdf
|
||||||
ros install qlot
|
- name: Install Qlot
|
||||||
echo .qlot/bin >> $GITHUB_PATH
|
run: |
|
||||||
- name: Install Dependencies
|
ros install qlot
|
||||||
run: |
|
echo .qlot/bin >> $GITHUB_PATH
|
||||||
rm -fr qlfile
|
- name: Install Dependencies
|
||||||
touch qlfile
|
run: |
|
||||||
if [[ "${QUICKLISP_DIST}" == 'ultralisp' ]]; then
|
rm -fr qlfile
|
||||||
echo dist ultralisp http://dist.ultralisp.org/ >> qlfile
|
touch qlfile
|
||||||
fi
|
if [[ "${QUICKLISP_DIST}" == 'ultralisp' ]]; then
|
||||||
qlot install
|
echo dist ultralisp http://dist.ultralisp.org/ >> qlfile
|
||||||
|
fi
|
||||||
|
qlot install
|
||||||
|
|
Loading…
Reference in a new issue