Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GHA: Update runners #25

Merged
merged 4 commits into from
Jan 20, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
include:
- { compiler: gcc-10, os: ubuntu-18.04 }
- { compiler: gcc-10, os: ubuntu-22.04 }
- { compiler: msvc, os: windows-2019 }

runs-on: ${{matrix.os}}
Expand All @@ -49,14 +49,14 @@ jobs:
run: echo "::set-output name=upload_url::https://uploads.github.com/repos/$GITHUB_REPOSITORY/releases/$(jq --raw-output '.release.id' $GITHUB_EVENT_PATH)/assets{?name,label}"
id: release

- uses: actions/checkout@v2
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/checkout@v4
name: Checkout libutil
with:
repository: Return-To-The-Roots/libutil
ref: master
path: external/libutil
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: Checkout libendian
with:
repository: Return-To-The-Roots/libendian
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
StyleAndFormatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: git submodule update --init
- name: Validation
run: tools/ci/staticValidation.sh "$GITHUB_WORKSPACE"
Expand All @@ -44,13 +44,13 @@ jobs:
strategy:
matrix:
include:
- { compiler: gcc-6, os: ubuntu-18.04, buildType: Release }
- { compiler: gcc-6, os: ubuntu-18.04, buildType: Debug, coverage: true }
- { compiler: clang, os: macos-10.15, buildType: Debug, boostVersion: 1.74.0 } # Multiple bugs with recent OSX until 1.74
- { compiler: gcc-7, os: ubuntu-20.04, buildType: Release }
- { compiler: gcc-7, os: ubuntu-20.04, buildType: Debug, coverage: true }
- { compiler: clang, os: macos-13, buildType: Debug, boostVersion: 1.74.0 } # Multiple bugs with recent OSX until 1.74
# Latest GCC
- { compiler: gcc-10, os: ubuntu-18.04, buildType: Debug }
- { compiler: gcc-13, os: ubuntu-22.04, buildType: Debug, boostVersion: 1.73.0 }
# Latest Clang
- { compiler: clang-10, os: ubuntu-18.04, buildType: Debug }
- { compiler: clang-12, os: ubuntu-22.04, buildType: Debug, boostVersion: 1.73.0 }
# Windows
- { compiler: msvc, os: windows-2019, buildType: Debug }

Expand All @@ -64,14 +64,14 @@ jobs:
- run: echo "BOOST_VERSION=${{matrix.boostVersion}}" >> $GITHUB_ENV
if: matrix.boostVersion

- uses: actions/checkout@v2
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/checkout@v4
name: Checkout libutil
with:
repository: Return-To-The-Roots/libutil
ref: master
path: external/libutil
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: Checkout libendian
with:
repository: Return-To-The-Roots/libendian
Expand Down
Loading