Skip to content

Commit

Permalink
Merge pull request #141 from striezel-stash/gh-action-update
Browse files Browse the repository at this point in the history
update actions/checkout in GitHub Actions to v3
  • Loading branch information
lemire committed Sep 26, 2022
2 parents f1c69ac + 3aaf22e commit e71137f
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/alpine.yml
Expand Up @@ -6,7 +6,7 @@ jobs:
ubuntu-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: start docker
run: |
docker run -w /src -dit --name alpine -v $PWD:/src alpine:latest
Expand All @@ -24,4 +24,4 @@ jobs:
./alpine.sh cmake --build build_for_alpine
- name: test
run: |
./alpine.sh bash -c "cd build_for_alpine && ctest -R basictest"
./alpine.sh bash -c "cd build_for_alpine && ctest -R basictest"
2 changes: 1 addition & 1 deletion .github/workflows/amalgamate-ubuntu20.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
- {cxx: , arch: } # default=gcc9
#- {cxx: , arch: -DCMAKE_CXX_FLAGS="-m32"} # default=gcc9
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Compile with amalgamation
run: |
mkdir build &&
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msys2-clang.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
CMAKE_GENERATOR: Ninja

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
with:
update: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msys2.yml
Expand Up @@ -29,7 +29,7 @@ jobs:
CMAKE_GENERATOR: Ninja

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
with:
update: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu18.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
- {cxx: , arch: } # default=gcc7
#- {cxx: , arch: -DCMAKE_CXX_FLAGS="-m32"} # default=gcc7
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1.4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu20-cxx20.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use cmake
run: |
mkdir build &&
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu20.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
- {cxx: , arch: } # default=gcc9
#- {cxx: , arch: -DCMAKE_CXX_FLAGS="-m32"} # default=gcc9
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use cmake
run: |
mkdir build &&
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vs17-arm-ci.yml
Expand Up @@ -14,8 +14,8 @@ jobs:
- {arch: ARM64}
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Use cmake
run: |
cmake -A ${{ matrix.arch }} -DCMAKE_CROSSCOMPILING=1 -DFASTFLOAT_TEST=ON -B build &&
cmake --build build --verbose
cmake --build build --verbose
4 changes: 2 additions & 2 deletions .github/workflows/vs17-ci.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
- {gen: Visual Studio 17 2022, arch: x64}
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Use cmake
run: |
mkdir build &&
Expand All @@ -26,4 +26,4 @@ jobs:
cd ../tests/installation_tests/find &&
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination .. && cmake --build . --verbose
cd ../../issue72_installation &&
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination .. && cmake --build . --verbose
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX:PATH=../../../build/destination .. && cmake --build . --verbose
2 changes: 1 addition & 1 deletion .github/workflows/vs17-clang-ci.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
- {gen: Visual Studio 17 2022, arch: x64}
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Configure
run: |
mkdir build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vs17-cxx20.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
- {gen: Visual Studio 17 2022, arch: x64}
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Use cmake
run: |
mkdir build &&
Expand Down

0 comments on commit e71137f

Please sign in to comment.