Skip to content

Commit

Permalink
Cleaning up the actions workflow file.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaa committed Mar 4, 2024
1 parent 855e9e3 commit 454afdd
Showing 1 changed file with 1 addition and 26 deletions.
27 changes: 1 addition & 26 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,6 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
#os: [ubuntu-latest, windows-latest, macos-latest]
# os:
# - windows-latest
# # - ubuntu-latest
# # - macos-latest
# compiler: [gcc, clang, msvc]
# - gcc
# - llvm
# - clang
# - msvc
# you can specify the version after `-` like `llvm-13.0.0`.
# include:
# - os: "windows-latest"
# compiler: "msvc"
include:
- os: ubuntu-latest
compiler: gcc
Expand All @@ -35,12 +21,6 @@ jobs:
- os: macos-latest
compiler: clang

# services:
# backend:
# image: nginx
# ports:
# - 8080:80

steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -89,9 +69,6 @@ jobs:
- name: Build project
shell: bash
run: |
pwd
set
echo "-------------------------------------------"
if [ -d build ]; then
echo "Build dir exists"
ls -la build
Expand All @@ -100,10 +77,8 @@ jobs:
#rm -rf build/*
fi
pushd build
cmake .. -G "Ninja" -DCMAKE_TOOLCHAIN_FILE=~/vcpkg/scripts/buildsystems/vcpkg.cmake
cmake .. -DCMAKE_BUILD_TYPE=Release -G "Ninja" -DCMAKE_TOOLCHAIN_FILE=~/vcpkg/scripts/buildsystems/vcpkg.cmake
cmake --build .
echo "-------------------------------------------"
ls -la bin
popd
- name: Install curl
Expand Down

0 comments on commit 454afdd

Please sign in to comment.