-
Notifications
You must be signed in to change notification settings - Fork 280
150 lines (148 loc) · 4.94 KB
/
release-native.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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
name: Release Native
on:
release:
types: [ published ]
workflow_dispatch:
inputs:
version:
description: "Scalafmt version (e.g., 1.2.3)"
required: true
run_id:
description: "Github actions run_id which built the release"
required: true
permissions:
contents: read
jobs:
scala-native:
if: github.event_name == 'release'
permissions:
contents: write # for actions/upload-release-asset to upload release asset
strategy:
fail-fast: false
matrix:
deploy: [
{ os: macOS-13, name: scalafmt-x86_64-apple-darwin.zip },
{ os: macOS-14, name: scalafmt-aarch64-apple-darwin.zip },
{ os: ubuntu-22.04, name: scalafmt-x86_64-pc-linux.zip },
{ os: ubuntu-24.04-arm, name: scalafmt-aarch64-pc-linux.zip },
{ os: windows-2022, name: scalafmt-x86_64-pc-win32.zip }
]
runs-on: ${{ matrix.deploy.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'sbt'
- uses: sbt/setup-sbt@v1
- run: sbt scala-native
env:
CI: true
- name: Zip artifact for deployment
if: ${{ !startsWith(matrix.deploy.os, 'windows') }}
run: zip ${{ matrix.deploy.name }} scalafmt
- name: Zip artifact for deployment
if: ${{ startsWith(matrix.deploy.os, 'windows') }}
run: 7z a ${{ matrix.deploy.name }} scalafmt.exe
- uses: actions/upload-artifact@master
with:
name: ${{ matrix.deploy.name }}
path: ${{ matrix.deploy.name }}
- name: Upload release to Github
uses: actions/upload-release-asset@v1.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ${{ matrix.deploy.name }}
asset_name: ${{ matrix.deploy.name }}
asset_content_type: application/zip
dockerize:
needs: [ scala-native ]
if: ${{ github.event_name == 'release' == success() }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker Meta
id: meta
uses: docker/metadata-action@v5
with:
images: scalameta/scalafmt
tags: type=raw,value=${{ github.event_name == 'release' && github.event.release.tag_name || github.event.inputs.version }}
- name: Downloading scalafmt for Docker Build
uses: actions/download-artifact@v4
with:
name: scalafmt-x86_64-pc-linux
path: tmp/scalafmt-docker-build # Dockerfile uses this
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event_name == 'release' && github.run_id || github.event.inputs.run_id }}
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
native-image: # deprecated, will soon be removed
if: github.event_name == 'release'
permissions:
contents: write # for actions/upload-release-asset to upload release asset
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ macOS-latest, ubuntu-latest ]
libc: [ default, musl ]
exclude:
- os: macOS-latest
libc: musl
include:
- os: macOS-latest
artifact: scalafmt-macos
env:
NATIVE_IMAGE_STATIC: none
- os: ubuntu-latest
libc: default
artifact: scalafmt-linux-glibc
env:
NATIVE_IMAGE_STATIC: nolibc
- os: ubuntu-latest
libc: musl
artifact: scalafmt-linux-musl
env:
NATIVE_IMAGE_STATIC: musl
env: ${{ matrix.env }}
steps:
- uses: actions/checkout@v4
- name: Set up GraalVM
uses: graalvm/setup-graalvm@v1
with:
java-version: '21'
distribution: 'graalvm-community'
native-image-musl: ${{ matrix.libc == 'musl' }}
github-token: ${{ secrets.GITHUB_TOKEN }}
- uses: sbt/setup-sbt@v1
- run: bin/build-native-image.sh
env:
CI: true
- uses: actions/upload-artifact@master
with:
name: ${{ matrix.artifact }}
path: scalafmt
- name: Upload release to Github
uses: actions/upload-release-asset@v1.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: scalafmt
asset_name: ${{ matrix.artifact }}
asset_content_type: application/zip