blob: ea753cde592adea7f00ebbe8f2cbb3bf58d13c3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
language: node_js
node_js: stable
env:
global:
- HOMEBREW_NO_AUTO_UPDATE=1
- BREW_FISH2="https://raw.githubusercontent.com/Homebrew/homebrew-core/2827b020c3366ea93566a344167ba62388c16c7d/Formula/fish.rb"
jobs:
include:
- stage: test
name: "Fish 2.X Linux"
os: linux
sudo: required
install:
- sudo apt-add-repository -y ppa:fish-shell/release-2
- sudo apt-get update
- sudo apt-get install -y fish
- stage: test
name: "Fish 2.X macOS"
os: osx
install: brew install $BREW_FISH2
- stage: test
name: "Fish 3.X Linux"
os: linux
sudo: required
install:
- sudo apt-add-repository -y ppa:fish-shell/release-3
- sudo apt-get update
- sudo apt-get install -y fish
- stage: test
name: "Fish 3.X macOS"
os: osx
install: brew install fish
- stage: release
provider: script
skip_cleanup: true
script: npx semantic-release
|