Skip to content

Commit

Permalink
trying to fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
felixjulianheitmann committed Sep 20, 2024
1 parent 880bc19 commit 1459b5d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build-test-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- run: ls /usr/local/opt/openssl*

- name: configure
run: |
cmake -S . -B build -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl@1.1 -DCMAKE_BUILD_TYPE=Release ..
cmake -S . -B build -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl@3.4 -DCMAKE_BUILD_TYPE=Release ..
- name: build
working-directory: build
Expand All @@ -32,7 +34,7 @@ jobs:
- name: list artifacts
run: ls -R

- uses: actions/upload-artifact@master
- uses: actions/upload-artifact@v4
with:
name: lcxx-tests-mac
path: |
Expand All @@ -45,9 +47,9 @@ jobs:
runs-on: macos-latest

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

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: lcxx-tests-mac

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-test-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -36,7 +36,7 @@ jobs:
working-directory: build
run: cmake --build .

- uses: actions/upload-artifact@master
- uses: actions/upload-artifact@v4
with:
name: lcxx-tests-ubuntu
path: |
Expand All @@ -50,15 +50,15 @@ jobs:
runs-on: ubuntu-latest

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

- name: Get latest GCC (libstdc++ required)
uses: egor-tensin/setup-gcc@v1
with:
version: 11
platform: x64

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: lcxx-tests-ubuntu

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
working-directory: build
run: cmake --build . --config Release

- uses: actions/upload-artifact@master
- uses: actions/upload-artifact@4
with:
name: lcxx-tests-windows
path: |
Expand All @@ -43,12 +43,12 @@ jobs:
runs-on: windows-latest

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

# - name: install OpenSSL
# run: choco install openssl

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: lcxx-tests-windows

Expand Down

0 comments on commit 1459b5d

Please sign in to comment.