File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 4545 uses : actions/checkout@v4
4646 with :
4747 submodules : recursive
48+ - name : Install dependencies
49+ run : |
50+ sudo apt-get update
51+ sudo apt-get -y install libcurl4-openssl-dev
4852 - name : Install swiftly
49- run : curl -L https://swiftlang.github.io/swiftly/swiftly-install.sh | bash -s -- -y
53+ run : |
54+ curl -O https://download.swift.org/swiftly/linux/swiftly-$(uname -m).tar.gz && \
55+ tar zxf swiftly-$(uname -m).tar.gz && \
56+ ./swiftly init --quiet-shell-followup --skip-install && \
57+ . "${SWIFTLY_HOME_DIR:-$HOME/.local/share/swiftly}/env.sh" && \
58+ hash -r
59+ echo "$HOME/.local/share/swiftly/bin" >> $GITHUB_PATH
5060 - name : Install the latest Swift toolchain
5161 run : swiftly install latest
5262 - name : Test
You can’t perform that action at this time.
0 commit comments