aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/linux.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/linux.yml')
-rw-r--r--.github/workflows/linux.yml27
1 files changed, 13 insertions, 14 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index d7386fd9..c40b65f7 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -1,25 +1,24 @@
name: linux
on: [push, pull_request]
jobs:
-
build:
name: build
- runs-on: [ ubuntu-latest ]
+ runs-on: [ubuntu-latest]
steps:
- - name: Check out code
- uses: actions/checkout@v1
+ - name: Check out code
+ uses: actions/checkout@v4
- - name: Install mbedTLS
- run: sudo apt-get install libmbedtls-dev
+ - name: Install mbedTLS
+ run: sudo apt-get install libmbedtls-dev
- - name: Install ninja
- run: sudo apt-get install ninja-build
+ - name: Install ninja
+ run: sudo apt-get install ninja-build
- - name: Configure
- run: mkdir build && cd build && cmake -G Ninja -D NNG_ENABLE_TLS=ON ..
+ - name: Configure
+ run: mkdir build && cd build && cmake -G Ninja -D NNG_ENABLE_TLS=ON ..
- - name: Build
- run: cd build && ninja
+ - name: Build
+ run: cd build && ninja
- - name: Test
- run: cd build && ctest --output-on-failure \ No newline at end of file
+ - name: Test
+ run: cd build && ctest --output-on-failure