Skip to content

Commit 1329b12

Browse files
committed
Try again
1 parent 7f54ee2 commit 1329b12

File tree

2 files changed

+9
-16
lines changed

2 files changed

+9
-16
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ jobs:
113113
# Smaller job for MacOS to avoid excessive billing
114114
strategy:
115115
matrix:
116-
platform: [macos-latest-arm]
117-
otp-version: [26]
116+
platform: [macos-latest]
117+
otp-version: [27]
118118
runs-on: ${{ matrix.platform }}
119119
steps:
120120
- uses: actions/checkout@v2

.github/workflows/release.yml

+7-14
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ jobs:
161161
# Smaller job for MacOS to avoid excessive billing
162162
strategy:
163163
matrix:
164-
platform: [macos-latest-arm]
165-
otp-version: [26]
164+
platform: [macos-latest]
165+
otp-version: [24, 25, 26, 27]
166166
runs-on: ${{ matrix.platform }}
167167
steps:
168168
- uses: actions/checkout@v2
@@ -172,27 +172,20 @@ jobs:
172172
run: brew install rebar3
173173
- name: Compile
174174
run: rebar3 compile
175-
- name: Generate Dialyzer PLT for usage in CT Tests
176-
run: dialyzer --build_plt --apps erts kernel stdlib compiler crypto parsetools
177-
- name: Start epmd as daemon
178-
run: epmd -daemon
179-
- name: Run CT Tests
180-
run: rebar3 ct
181-
182175
# Make release artifacts : erlang_ls
183-
- name: Make erlang_ls-${{ matrix.otp-version }}-macos-arm.tar.gz
184-
run: 'tar -zcvf erlang_ls-${{ matrix.otp-version }}-macos-arm.tar.gz -C _build/default/bin/ erlang_ls'
176+
- name: Make erlang_ls-${{ matrix.otp-version }}-macos.tar.gz
177+
run: 'tar -zcvf erlang_ls-${{ matrix.otp-version }}-macos.tar.gz -C _build/default/bin/ erlang_ls'
185178
- env:
186179
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
187180
id: get_release_url
188181
name: Get release url
189182
uses: "bruceadams/[email protected]"
190183
- env:
191184
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
192-
name: Upload release erlang_ls-${{ matrix.otp-version }}-macos-arm.tar.gz
185+
name: Upload release erlang_ls-${{ matrix.otp-version }}-macos.tar.gz
193186
uses: "actions/[email protected]"
194187
with:
195188
asset_content_type: application/octet-stream
196-
asset_name: erlang_ls-${{ matrix.otp-version }}-macos-arm.tar.gz
197-
asset_path: erlang_ls-${{ matrix.otp-version }}-macos-arm.tar.gz
189+
asset_name: erlang_ls-${{ matrix.otp-version }}-macos.tar.gz
190+
asset_path: erlang_ls-${{ matrix.otp-version }}-macos.tar.gz
198191
upload_url: "${{ steps.get_release_url.outputs.upload_url }}"

0 commit comments

Comments
 (0)