Skip to content
Merged
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
9 changes: 9 additions & 0 deletions .github/workflows/linux-clang-14.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: linux-clang-14

on: [ pull_request ]

env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"

jobs:
linux-clang-14:
runs-on: ubuntu-latest
Expand All @@ -11,6 +14,12 @@ jobs:
with:
submodules: recursive
fetch-depth: 0
- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
with:
script: |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
- name: Run vcpkg
uses: lukka/run-vcpkg@v11
- uses: KyleMayes/install-llvm-action@v1
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/linux-clang-16.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: linux-clang-16

on: [ pull_request ]

env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"

jobs:
linux-clang-16:
runs-on: ubuntu-latest
Expand All @@ -11,6 +14,12 @@ jobs:
with:
submodules: recursive
fetch-depth: 0
- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
with:
script: |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
- name: Run vcpkg
uses: lukka/run-vcpkg@v11
- uses: KyleMayes/install-llvm-action@v1
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/linux-gcc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: linux-gcc

on: [ pull_request ]

env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"

jobs:
linux-gcc:
runs-on: ubuntu-latest
Expand All @@ -11,6 +14,12 @@ jobs:
with:
submodules: recursive
fetch-depth: 0
- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
with:
script: |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
- name: Run vcpkg
uses: lukka/run-vcpkg@v11
- name: install dependencies
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/macos-clang-arm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: macos-clang-arm

on: [ pull_request ]

env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"

jobs:
macos-clang-arm:
runs-on: macos-latest
Expand All @@ -11,6 +14,12 @@ jobs:
with:
submodules: recursive
fetch-depth: 0
- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
with:
script: |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
- name: Run vcpkg
uses: lukka/run-vcpkg@v11
- name: Install ninja
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/macos-clang-x64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: macos-clang-x64

on: [ pull_request ]

env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"

jobs:
macos-clang-x64:
runs-on: macos-13
Expand All @@ -11,6 +14,12 @@ jobs:
with:
submodules: recursive
fetch-depth: 0
- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
with:
script: |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
- name: Run vcpkg
uses: lukka/run-vcpkg@v11
- name: Compile
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/windows-msvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: windows-msvc

on: [ pull_request ]

env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"

jobs:
windows-msvc:
runs-on: windows-latest
Expand All @@ -11,6 +14,12 @@ jobs:
with:
submodules: recursive
fetch-depth: 0
- name: Export GitHub Actions cache environment variables
uses: actions/github-script@v7
with:
script: |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
- uses: ilammy/msvc-dev-cmd@v1
- uses: lukka/run-vcpkg@v11
- name: Compile
Expand Down
Loading