ci: add semi-colons

This commit is contained in:
Derrick Hammer 2023-06-23 01:54:17 -04:00
parent b8e08cbe05
commit 0a502bd2f3
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 11 additions and 11 deletions

View File

@ -12,18 +12,18 @@ workflows:
pre-steps: pre-steps:
- run: - run:
command: > command: >
bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer) bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer);
source ~/.gvm/scripts/gvm source ~/.gvm/scripts/gvm;
gvm install go1.4 gvm install go1.4;
gvm use go1.4 --default gvm use go1.4 --default;
gvm install go1.4 gvm install go1.4;
gvm use go1.8 --default gvm use go1.8 --default;
VERSION=0.28.1 VERSION=0.28.1;
TINYGO="tinygo_${VERSION}_amd64.deb" TINYGO="tinygo_${VERSION}_amd64.deb"
wget https://github.com/tinygo-org/tinygo/releases/download/$VERSION/$TINYGO wget https://github.com/tinygo-org/tinygo/releases/download/$VERSION/$TINYGO;
sudo dpkg -i $TINYGO && rm $TINYGO sudo dpkg -i $TINYGO && rm $TINYGO;
cd src/golang cd src/golang;
go get go get;
post-steps: post-steps:
- persist_to_workspace: - persist_to_workspace: