Skip to content

Commit 3a223e4

Browse files
author
CI Tester
committed
Add FastCI initial installation
1 parent 64ea34e commit 3a223e4

20 files changed

+148
-0
lines changed

.github/workflows/accessTests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ jobs:
4545
with:
4646
ref: ${{ github.event.pull_request.head.sha || github.ref }}
4747

48+
- name: Setup FastCI
49+
if: matrix.os.name != 'macos'
50+
uses: jfrog-fastci/fastci@v0
51+
with:
52+
github_token: ${{ secrets.GITHUB_TOKEN }}
53+
fastci_otel_token: ${{ secrets.FASTCI_TOKEN }}
54+
4855
- name: Setup Go with cache
4956
if: matrix.os.name != 'macos'
5057
uses: jfrog/.github/actions/install-go-with-cache@main

.github/workflows/analysis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,13 @@ jobs:
2121
with:
2222
ref: ${{ github.event.pull_request.head.sha || github.ref }}
2323

24+
- &fastci
25+
name: Setup FastCI
26+
uses: jfrog-fastci/fastci@v0
27+
with:
28+
github_token: ${{ secrets.GITHUB_TOKEN }}
29+
fastci_otel_token: ${{ secrets.FASTCI_TOKEN }}
30+
2431
- name: Setup Go with cache
2532
uses: jfrog/.github/actions/install-go-with-cache@main
2633

@@ -36,6 +43,8 @@ jobs:
3643
with:
3744
ref: ${{ github.event.pull_request.head.sha || github.ref }}
3845

46+
- *fastci
47+
3948
- name: Setup Go with cache
4049
uses: jfrog/.github/actions/install-go-with-cache@main
4150

@@ -51,6 +60,8 @@ jobs:
5160
with:
5261
ref: ${{ github.event.pull_request.head.sha || github.ref }}
5362

63+
- *fastci
64+
5465
- name: Setup Go with cache
5566
uses: jfrog/.github/actions/install-go-with-cache@main
5667

@@ -66,6 +77,8 @@ jobs:
6677
with:
6778
ref: ${{ github.event.pull_request.head.sha || github.ref }}
6879

80+
- *fastci
81+
6982
- name: Run ShellCheck
7083
uses: ludeeus/action-shellcheck@master
7184
with:
@@ -79,6 +92,8 @@ jobs:
7992
with:
8093
ref: ${{ github.event.pull_request.head.sha || github.ref }}
8194

95+
- *fastci
96+
8297
- name: Check for uncommented replace instructions on JFrog dependencies
8398
run: |
8499
if grep -E '^[[:space:]]*replace[[:space:]]+github\.com/jfrog' go.mod; then

.github/workflows/artifactoryTests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ jobs:
4545
with:
4646
ref: ${{ github.event.pull_request.head.sha || github.ref }}
4747

48+
- name: Setup FastCI
49+
if: matrix.os.name != 'macos'
50+
uses: jfrog-fastci/fastci@v0
51+
with:
52+
github_token: ${{ secrets.GITHUB_TOKEN }}
53+
fastci_otel_token: ${{ secrets.FASTCI_TOKEN }}
54+
4855
- name: Setup Go with cache
4956
if: matrix.os.name != 'macos'
5057
uses: jfrog/.github/actions/install-go-with-cache@main

.github/workflows/conanTests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,13 @@ jobs:
4040
with:
4141
ref: ${{ github.event.pull_request.head.sha || github.ref }}
4242

43+
- name: Setup FastCI
44+
if: matrix.os.name != 'macos'
45+
uses: jfrog-fastci/fastci@v0
46+
with:
47+
github_token: ${{ secrets.GITHUB_TOKEN }}
48+
fastci_otel_token: ${{ secrets.FASTCI_TOKEN }}
49+
4350
- name: Setup Go with cache
4451
if: matrix.os.name != 'macos'
4552
uses: jfrog/.github/actions/install-go-with-cache@main

.github/workflows/distributionTests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,11 @@ jobs:
3232
with:
3333
ref: ${{ github.event.pull_request.head.sha || github.ref }}
3434

35+
- name: Setup FastCI
36+
uses: jfrog-fastci/fastci@v0
37+
with:
38+
github_token: ${{ secrets.GITHUB_TOKEN }}
39+
fastci_otel_token: ${{ secrets.FASTCI_TOKEN }}
40+
3541
- name: Run Distribution tests
3642
run: go test -v github.com/jfrog/jfrog-cli --timeout 0 --test.distribution --jfrog.url=${{ secrets.PLATFORM_URL }} --jfrog.adminToken=${{ secrets.PLATFORM_ADMIN_TOKEN }} --jfrog.user=${{ secrets.PLATFORM_USER }} --ci.runId=${{ runner.os }}-distribution

.github/workflows/dockerTests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ jobs:
3030
with:
3131
ref: ${{ github.event.pull_request.head.sha || github.ref }}
3232

33+
- name: Setup FastCI
34+
uses: jfrog-fastci/fastci@v0
35+
with:
36+
github_token: ${{ secrets.GITHUB_TOKEN }}
37+
fastci_otel_token: ${{ secrets.FASTCI_TOKEN }}
38+
3339
- name: Setup Go with cache
3440
uses: jfrog/.github/actions/install-go-with-cache@main
3541

.github/workflows/evidenceTests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ jobs:
2929
with:
3030
ref: ${{ github.event.pull_request.head.sha || github.ref }}
3131

32+
- name: Setup FastCI
33+
uses: jfrog-fastci/fastci@v0
34+
with:
35+
github_token: ${{ secrets.GITHUB_TOKEN }}
36+
fastci_otel_token: ${{ secrets.FASTCI_TOKEN }}
37+
3238
- name: Setup Go with cache
3339
uses: jfrog/.github/actions/install-go-with-cache@main
3440

.github/workflows/goTests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ jobs:
3030
with:
3131
ref: ${{ github.event.pull_request.head.sha || github.ref }}
3232

33+
- name: Setup FastCI
34+
uses: jfrog-fastci/fastci@v0
35+
with:
36+
github_token: ${{ secrets.GITHUB_TOKEN }}
37+
fastci_otel_token: ${{ secrets.FASTCI_TOKEN }}
38+
3339
- name: Setup Go with cache
3440
uses: jfrog/.github/actions/install-go-with-cache@main
3541

.github/workflows/gradleTests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ jobs:
4545
with:
4646
ref: ${{ github.event.pull_request.head.sha || github.ref }}
4747

48+
- name: Setup FastCI
49+
if: matrix.os.name != 'macos'
50+
uses: jfrog-fastci/fastci@v0
51+
with:
52+
github_token: ${{ secrets.GITHUB_TOKEN }}
53+
fastci_otel_token: ${{ secrets.FASTCI_TOKEN }}
54+
4855
- name: Setup Java
4956
if: matrix.os.name != 'macos'
5057
uses: actions/setup-java@v5

.github/workflows/helmTests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ jobs:
4545
with:
4646
ref: ${{ github.event.pull_request.head.sha || github.ref }}
4747

48+
- name: Setup FastCI
49+
if: matrix.os.name != 'macos'
50+
uses: jfrog-fastci/fastci@v0
51+
with:
52+
github_token: ${{ secrets.GITHUB_TOKEN }}
53+
fastci_otel_token: ${{ secrets.FASTCI_TOKEN }}
54+
4855
- name: Setup Go with cache
4956
if: matrix.os.name != 'macos'
5057
uses: jfrog/.github/actions/install-go-with-cache@main

0 commit comments

Comments
 (0)