-
Notifications
You must be signed in to change notification settings - Fork 24
185 lines (184 loc) · 7.59 KB
/
ci.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
name: ELP CI
on:
push: {}
release:
types: [published]
env:
EQWALIZER_DIR: ${{ github.workspace }}/eqwalizer/eqwalizer
ELP_EQWALIZER_PATH: ${{ github.workspace }}/eqwalizer/eqwalizer/eqwalizer
jobs:
ci:
strategy:
matrix:
platform-arch: [ubuntu-20.04-x64, ubuntu-24.04-arm, macos-13-x64, macos-latest-arm]
otp-version: [25.3, 26.2, 27.1]
include:
- otp-version: 25.3
brew-otp-version: 25
vscode-publish: true
- otp-version: 26.2
brew-otp-version: 26
vscode-publish: false
- otp-version: 27.1
brew-otp-version: 27
vscode-publish: false
- platform-arch: ubuntu-20.04-x64
platform: ubuntu-20.04
os: linux
target: x86_64-unknown-linux-gnu
vscode-target: linux-x64
- platform-arch: ubuntu-24.04-arm
platform: ubuntu-24.04-arm
os: linux
target: aarch64-unknown-linux-gnu
vscode-target: linux-arm64
- platform-arch: macos-13-x64
platform: macos-13
os: macos
target: x86_64-apple-darwin
vscode-target: darwin-x64
- platform-arch: macos-latest-arm
platform: macos-latest
os: macos
target: aarch64-apple-darwin
vscode-target: darwin-arm64
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout erlang-language-platform
uses: "actions/checkout@v3"
- name: Checkout eqwalizer
uses: "actions/checkout@v3"
with:
repository: WhatsApp/eqwalizer
path: eqwalizer
ref: main
- name: Set up GraalVM
uses: graalvm/setup-graalvm@v1
with:
java-version: '17'
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Show uname
run: |
uname -m
- name: Show runner OS
run: |
echo $RUNNER_OS
- name: Set up SBT
uses: olafurpg/setup-scala@v14
with:
java-version: '17'
- name: Set up rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.target }}
- name: Install Erlang/OTP (Linux Only)
if: matrix.os == 'linux'
uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp-version }}
install-rebar: false
install-hex: false
- name: Install Erlang/OTP (MacOS Only)
if: matrix.os == 'macos'
run: brew install erlang@${{ matrix.brew-otp-version }}
- name: Add erl to path (MacOS Only)
if: matrix.os == 'macos'
run: |
echo '/opt/homebrew/opt/erlang@${{ matrix.brew-otp-version }}/bin' >> $GITHUB_PATH
echo '/usr/local/opt/erlang@${{ matrix.brew-otp-version }}/bin' >> $GITHUB_PATH
- name: Verify Erlang version
run: erl -eval 'erlang:display(erlang:system_info(otp_release)), halt().' -noshell
- name: Install rebar3
run: "mkdir rebar3 && curl https://s3.amazonaws.com/rebar3/rebar3 -o rebar3/rebar3 && chmod +x rebar3/rebar3"
- name: Add rebar3 to path
run: 'echo "$GITHUB_WORKSPACE/rebar3" >> $GITHUB_PATH'
- name: Verify rebar3 version
run: rebar3 version
- name: Assemble eqwalizer.jar
working-directory: eqwalizer/eqwalizer
run: "sbt assembly"
- name: Assemble eqwalizer binary
working-directory: eqwalizer/eqwalizer
run: 'native-image -H:IncludeResources=application.conf --no-server --no-fallback -jar target/scala-2.13/eqwalizer.jar eqwalizer'
- name: Test elp
# Do not run the tests in case of cross-compilation
if: matrix.platform-arch != 'macos-latest-arm'
run: 'cargo test --no-default-features --workspace --target ${{ matrix.target }}'
- name: Build elp
run: 'cargo build --release --target ${{ matrix.target }} --config target.aarch64-unknown-linux-gnu.linker=\"aarch64-linux-gnu-gcc\"'
- name: Add elp to path
run: 'echo "$GITHUB_WORKSPACE/target/${{ matrix.target}}/release" >> $GITHUB_PATH'
- name: Upload elp binary
uses: "actions/upload-artifact@v4"
with:
name: elp-${{ matrix.os }}-${{ matrix.target }}-otp-${{ matrix.otp-version }}
path: target/${{ matrix.target}}/release/elp
- name: Upload eqwalizer native binary
uses: "actions/upload-artifact@v4"
with:
name: eqwalizer-${{ matrix.os }}-${{ matrix.target }}-otp-${{ matrix.otp-version }}
path: ./eqwalizer/eqwalizer/eqwalizer
- name: Make elp-${{ matrix.os }}-otp-${{ matrix.otp-version }}.tar.gz
run: 'tar -zcvf elp-${{ matrix.os }}-otp-${{ matrix.otp-version }}.tar.gz -C target/${{ matrix.target}}/release/ elp'
- env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
id: get_release_url
name: Get release url
if: ${{ github.event_name == 'release' }}
uses: "bruceadams/[email protected]"
- env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
name: Upload release elp-${{ matrix.os }}-otp-${{ matrix.otp-version }}.tar.gz
if: ${{ github.event_name == 'release' }}
uses: "actions/[email protected]"
with:
asset_content_type: application/octet-stream
asset_name: elp-${{ matrix.os }}-${{ matrix.target }}-otp-${{ matrix.otp-version }}.tar.gz
asset_path: elp-${{ matrix.os }}-otp-${{ matrix.otp-version }}.tar.gz
upload_url: "${{ steps.get_release_url.outputs.upload_url }}"
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install VSCE
run: npm install -g vsce
- name: Prepare VS Code Extension to host binaries
run: mkdir -p editors/code/bin
- name: Package eqWAlizer binary into VS Code Extension
run: cp eqwalizer/eqwalizer/eqwalizer editors/code/bin
- name: Package ELP binary into VS Code Extension
run: cp target/${{ matrix.target}}/release/elp editors/code/bin
- name: Ensure binaries are executable
run: chmod +x editors/code/bin/*
- name: npm install
working-directory: editors/code
run: npm install
- name: npm run compile
working-directory: editors/code
run: npm run compile
- name: Package Extension
working-directory: editors/code
run: vsce package --target ${{ matrix.vscode-target }}
- name: Rename Package
working-directory: editors/code
run: mv erlang-language-platform-*.vsix erlang-language-platform.vsix
- name: Upload Extension
uses: "actions/upload-artifact@v4"
with:
name: elp-${{ matrix.os}}-${{ matrix.target }}-otp-${{ matrix.otp-version }}.vsix
path: editors/code/erlang-language-platform.vsix
- env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
name: Upload Extension Package
if: ${{ github.event_name == 'release' }}
uses: "actions/[email protected]"
with:
asset_content_type: application/octet-stream
asset_name: elp-${{ matrix.os }}-${{ matrix.target }}-otp-${{ matrix.otp-version }}.vsix
asset_path: editors/code/erlang-language-platform.vsix
upload_url: "${{ steps.get_release_url.outputs.upload_url }}"
- name: Publish extension to marketplace
working-directory: editors/code
if: ${{ github.event_name == 'release' && matrix.vscode-publish }}
run: vsce publish -p ${{ secrets.VSCE_PAT }} --packagePath erlang-language-platform.vsix