-
Notifications
You must be signed in to change notification settings - Fork 59
56 lines (49 loc) · 1.61 KB
/
test.yml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: JFrog CLI Core Tests
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ ubuntu, windows, macos ]
env:
GOPROXY: direct
GRADLE_OPTS: -Dorg.gradle.daemon=false
JFROG_CLI_LOG_LEVEL: "DEBUG"
steps:
- uses: actions/checkout@v4
- name: Setup Python3
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install pipenv & poetry
run: python -m pip install pipenv poetry
- name: Install NuGet
uses: nuget/setup-nuget@v2
with:
nuget-version: 6.x
- name: Install dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.x'
# Install Mono on Ubuntu to run nuget.exe
- name: Install Mono on Ubuntu
if: matrix.os == 'ubuntu'
run: |
sudo apt-get update
sudo apt-get install -y apt-transport-https dirmngr gnupg ca-certificates
sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt-get update
sudo apt-get install -y mono-complete
- name: Setup Go with cache
uses: jfrog/.github/actions/install-go-with-cache@main
- name: Tests
run: go test -v github.com/jfrog/jfrog-cli-core/v2/tests -timeout 0 -race