Cosmos-Server/.circleci/config.yml
Yann Stepienik 264c21322e Fix node CI
2023-03-12 18:29:43 +00:00

86 lines
2.5 KiB
YAML

version: 2
jobs:
build: # name of your job
machine: # executor type
image: ubuntu-2004:202010-01 # # recommended linux image - includes Ubuntu 20.04, docker 19.03.13, docker-compose 1.27.4
steps:
- checkout
- run:
name: install dependencies
command: sudo apt-get install bash curl
- run:
name: download Go
command: wget https://golang.org/dl/go1.20.2.linux-amd64.tar.gz
- run:
name: install Go
command: sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.20.2.linux-amd64.tar.gz
- run:
name: set Go path
command: echo 'export PATH=$PATH:/usr/local/go/bin' >> $BASH_ENV
- run:
name: Swap node versions
command: |
set +e
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.1/install.sh | bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
nvm install v16
nvm alias default 16
echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV
echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV
- run:
name: Install GuPM
command: curl -fsSL https://azukaar.github.io/GuPM/install.sh | bash
- run: docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD
- run:
name: Install Go provider
command: ~/.gupm/gupm/g plugin install https://azukaar.github.io/GuPM-official/repo:provider-go
- run:
name: Install NPM provider
command: ~/.gupm/gupm/g plugin install https://azukaar.github.io/GuPM-official/repo:provider-npm
- run:
name: Install dependencies
command: ~/.gupm/gupm/g make
- run:
name: Build UI
command: ~/.gupm/gupm/g vite build
- run:
name: Build Linux (ARM)
command: ~/.gupm/gupm/g ci/build linux arm64
- run:
name: Build docker (ARM)
command: ~/.gupm/gupm/g docker arm64
- run:
name: Build Linux
command: ~/.gupm/gupm/g ci/build linux amd64
- run:
name: Build docker
command: ~/.gupm/gupm/g docker
workflows:
version: 2
build-all:
jobs:
- build:
filters:
branches:
only:
- master