mirror of
https://github.com/3proxy/3proxy.git
synced 2026-07-28 13:50:10 +08:00
apt update before install in workflows
This commit is contained in:
parent
4af02c9268
commit
5b7446ba8f
2
.github/workflows/c-cpp-Linux.yml
vendored
2
.github/workflows/c-cpp-Linux.yml
vendored
@ -25,7 +25,7 @@ jobs:
|
||||
# run: ./configure
|
||||
- name: Linux libraries
|
||||
if: ${{ startsWith(matrix.target, 'ubuntu') }}
|
||||
run: sudo apt install libssl-dev libpam-dev libpcre2-dev
|
||||
run: sudo apt-get update && sudo apt-get install -y libssl-dev libpam-dev libpcre2-dev
|
||||
- name: make
|
||||
run: make -f Makefile.Linux
|
||||
- name: mkdir
|
||||
|
||||
2
.github/workflows/c-cpp-cmake.yml
vendored
2
.github/workflows/c-cpp-cmake.yml
vendored
@ -64,7 +64,7 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v7
|
||||
- name: Install wolfSSL
|
||||
run: sudo apt install -y libwolfssl-dev
|
||||
run: sudo apt-get update && sudo apt-get install -y libwolfssl-dev
|
||||
- name: make with CMake (wolfSSL preferred)
|
||||
run: |
|
||||
mkdir build
|
||||
|
||||
Loading…
Reference in New Issue
Block a user