-
Notifications
You must be signed in to change notification settings - Fork 20
166 lines (166 loc) · 6.94 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
name: ELP CI
on:
push: {}
release:
types: [published]
jobs:
ci:
strategy:
matrix:
platform-arch: [ubuntu-20.04-x64, macos-latest-x64, macos-latest-arm]
otp-version: [25.3, 26.0]
include:
- otp-version: 25.3
brew-otp-version: 25
vscode-publish: true
- platform-arch: ubuntu-20.04-x64
platform: ubuntu-20.04
os: linux
target: x86_64-unknown-linux-gnu
vscode-target: linux-x64
- platform-arch: macos-latest-x64
platform: macos-latest
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
exclude:
# Formula not available yet (2023-09-06)
- platform-arch: macos-latest-x64
otp-version: 26.0
- platform-arch: macos-latest-arm
otp-version: 26.0
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
- name: Set up GraalVM
uses: graalvm/setup-graalvm@v1
with:
java-version: '17'
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}
- 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 '/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: 'export ELP_EQWALIZER_PATH=$GITHUB_WORKSPACE/eqwalizer/eqwalizer/eqwalizer && cargo test --no-default-features --workspace --target ${{ matrix.target }}'
- name: Build elp
run: 'export ELP_EQWALIZER_PATH=$GITHUB_WORKSPACE/eqwalizer/eqwalizer/eqwalizer && cargo build --release --target ${{ matrix.target }}'
- name: Add elp to path
run: 'echo "$GITHUB_WORKSPACE/target/${{ matrix.target}}/release" >> $GITHUB_PATH'
- name: Upload elp binary
uses: "actions/upload-artifact@v3"
with:
name: elp-${{ matrix.os }}-otp-${{ matrix.otp-version }}
path: target/${{ matrix.target}}/release/elp
- name: Test eqwalizer
working-directory: eqwalizer
run: 'sbt test'
- name: Upload eqwalizer native binary
uses: "actions/upload-artifact@v3"
with:
name: eqwalizer-${{ matrix.os }}-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 }}-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@v3"
with:
name: elp-${{ matrix.os}}-${{ 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 }}-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 }}