Skip to content

Commit

Permalink
ci: update build action format
Browse files Browse the repository at this point in the history
  • Loading branch information
heronimus committed Oct 3, 2024
1 parent 9cfda7d commit f2ce1fa
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install libcurl4-openssl-dev -y
run: |
sudo apt-get update
sudo apt-get install cmake make libcurl4-openssl-dev -y
- name: Apply Configure
run: ./configure
- name: Cmake With Fetching External Dependencies
run: cmake -DUSE_EXTERNAL_DPP=OFF -DUSE_EXTERNAL_JSON=OFF
- name: Make
run: make
- name: CMake With Fetching External Dependencies
run: |
cmake -DUSE_EXTERNAL_DPP=OFF -DUSE_EXTERNAL_JSON=OFF
make
docker:
name: Docker
runs-on: ubuntu-latest
Expand Down

0 comments on commit f2ce1fa

Please sign in to comment.