forked from babashka/nbb
-
Notifications
You must be signed in to change notification settings - Fork 0
97 lines (80 loc) · 2.2 KB
/
ci.yml
File metadata and controls
97 lines (80 loc) · 2.2 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name: build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: 'true'
- name: Cache deps
uses: actions/cache@v4.2.3
id: cache-deps
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('deps.edn') }}
restore-keys: ${{ runner.os }}-maven-
- name: Prepare java
uses: actions/setup-java@v2
with:
distribution: 'adopt-hotspot'
java-version: '25'
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@5.0
with:
cli: latest
bb: latest
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- name: Run tests
run: |
bb ci:test
jsr-publish:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
needs: build
permissions:
contents: read
id-token: write # The OIDC ID token is used for authentication with JSR.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: 'true'
- name: Cache deps
uses: actions/cache@v4.2.3
id: cache-deps
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('deps.edn') }}
restore-keys: ${{ runner.os }}-maven-
- name: Prepare java
uses: actions/setup-java@v2
with:
distribution: 'adopt-hotspot'
java-version: '25'
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@5.0
with:
cli: latest
bb: latest
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- name: Publish
if: ${{ github.ref == 'refs/heads/main' && matrix.os == 'ubuntu-latest' }}
run: |
bb clean
bb release
npx jsr publish