Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: dpkg --list | grep compiler

- name: Get pushed code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Configure
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
Expand All @@ -51,7 +51,7 @@ jobs:
run: dpkg --list | grep compiler

- name: Get pushed code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Configure
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
Expand All @@ -77,7 +77,7 @@ jobs:
shell: alpine.sh {0}
steps:
- name: Get pushed code
uses: actions/checkout@v4
uses: actions/checkout@v6

- uses: jirutka/setup-alpine@v1
with:
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
run: dpkg --list | grep compiler

- name: Get pushed code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Configure
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON -G Ninja
steps:
- name: Get pushed code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Configure
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built -DCMAKE_OSX_ARCHITECTURES="${{ matrix.arch }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/uwp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# TODO use CreateFile2 and add -DENABLE_WIN32_IO=ON
steps:
- name: Get pushed code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Configure
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -A ${{ matrix.arch.option }} -DBUILD_SHARED_LIBS=OFF
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
CMAKE_OPTIONS: -DDEV_MODE=ON -DCMAKE_CXX_FLAGS_INIT="-DWINVER=0x0501" -DBUILD_TESTING=ON
steps:
- name: Get pushed code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Configure library
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -A ${{ matrix.arch.option }}
Expand Down
Loading