Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
- Update macos-ci.yml
  - remove macos-11
  - add macos-13
- bump versions for actions/checkout and actions/setup-python
  • Loading branch information
jrmadsen committed Jul 26, 2024
1 parent 15005d8 commit c71ab36
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
Expand All @@ -42,9 +42,9 @@ jobs:
python-version: [3.8]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/linux-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
compiler: 'clang-12'
extra_args: '--num-tasks=256 --tbb --sanitizer --sanitizer-type=thread --static-analysis'
extra_cmake: '-DPTL_USE_LOCKS=ON'
extra_ctest: ''
extra_packages: 'clang-tidy-12'
standard: '17'
os-release: '20.04'
Expand All @@ -72,7 +73,7 @@ jobs:
os-release: ['20.04', '22.04']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install Conda
run:
Expand Down Expand Up @@ -141,6 +142,7 @@ jobs:
-- -DCMAKE_INSTALL_PREFIX=${HOME}/ptl-install -DCMAKE_CXX_STANDARD=${{ matrix.standard }} ${{ matrix.extra_cmake }}

- name: Install
if: ${{ !contains(matrix.extra_args, 'sanitizer') }}
run:
export PATH="/opt/conda/bin:${PATH}" &&
source activate &&
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
compiler: ["clang-14", "clang-15"]
extra_args: ["--num-tasks=256 --tbb"]
extra_packages: ["clangdev tbb-devel"]
os-release: ["macos-12", "macos-11"]
os-release: ["macos-12", "macos-13"]
standard: ["11", "17"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install Conda
run: |
Expand Down

0 comments on commit c71ab36

Please sign in to comment.