Skip to content

Commit

Permalink
rename workflow, add openresty install
Browse files Browse the repository at this point in the history
  • Loading branch information
gumpt committed Feb 29, 2024
1 parent ecd0018 commit be00293
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/stable.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ jobs:
- name: Install build dependencies
run: |
sudo apt update
sudo apt install -y cmake libclang-dev
sudo apt install -y cmake libclang-dev wget gnupg ca-certificates lsb-release --no-install-recommends
# openresty is used for convenience in tests as a server.
wget -O - https://openresty.org/package/pubkey.gpg | sudo gpg --dearmor -o /usr/share/keyrings/openresty.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/openresty.gpg] http://openresty.org/package/ubuntu $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/openresty.list > /dev/null
sudo apt update
sudo apt install -y openresty --no-install-recommends
- name: Install toolchain
uses: actions-rs/toolchain@v1
Expand Down

0 comments on commit be00293

Please sign in to comment.