Skip to content

Commit 57a9905

Browse files
committed
dist init
1 parent 46e1c02 commit 57a9905

File tree

2 files changed

+1
-26
lines changed

2 files changed

+1
-26
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -134,17 +134,6 @@ jobs:
134134
pattern: artifacts-*
135135
path: target/distrib/
136136
merge-multiple: true
137-
- name: Install OpenSSL
138-
run: |
139-
if [[ "${{ runner.os }}" == "Linux" ]]; then
140-
sudo apt-get update
141-
sudo apt-get install -y libssl-dev pkg-config
142-
echo "OPENSSL_DIR=/usr/lib/ssl" >> $GITHUB_ENV
143-
elif [[ "${{ runner.os }}" == "macOS" ]]; then
144-
brew install openssl@3
145-
echo "OPENSSL_DIR=$(brew --prefix openssl@3)" >> $GITHUB_ENV
146-
fi
147-
148137
- name: Install dependencies
149138
run: |
150139
${{ matrix.packages_install }}
@@ -193,13 +182,6 @@ jobs:
193182
name: cargo-dist-cache
194183
path: ~/.cargo/bin/
195184
- run: chmod +x ~/.cargo/bin/dist
196-
197-
- name: Install OpenSSL
198-
run: |
199-
sudo apt-get update
200-
sudo apt-get install -y libssl-dev pkg-config
201-
echo "OPENSSL_DIR=/usr/lib/ssl" >> $GITHUB_ENV
202-
203185
# Get all the local artifacts for the global tasks to use (for e.g. checksums)
204186
- name: Fetch local artifacts
205187
uses: actions/download-artifact@v4
@@ -249,13 +231,6 @@ jobs:
249231
name: cargo-dist-cache
250232
path: ~/.cargo/bin/
251233
- run: chmod +x ~/.cargo/bin/dist
252-
253-
- name: Install OpenSSL
254-
run: |
255-
sudo apt-get update
256-
sudo apt-get install -y libssl-dev pkg-config
257-
echo "OPENSSL_DIR=/usr/lib/ssl" >> $GITHUB_ENV
258-
259234
# Fetch artifacts from scratch-storage
260235
- name: Fetch artifacts
261236
uses: actions/download-artifact@v4

dist-workspace.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ installers = ["shell", "homebrew"]
1212
# A GitHub repo to push Homebrew formulas to
1313
tap = "openSVM/lessvm"
1414
# Target platforms to build apps for (Rust target-triple syntax)
15-
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-unknown-linux-gnu"]
15+
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]
1616
# Path that installers should place binaries in
1717
install-path = "CARGO_HOME"
1818
# Publish jobs to run in CI

0 commit comments

Comments
 (0)