Skip to content

Commit

Permalink
Print all lib files to hopefully find curl
Browse files Browse the repository at this point in the history
  • Loading branch information
Micha-ohne-el committed Oct 26, 2023
1 parent e1b3a16 commit d5bd35d
Showing 1 changed file with 6 additions and 122 deletions.
128 changes: 6 additions & 122 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,127 +20,11 @@ on:

jobs:
test_linux:
name: Run unit tests on Linux
name: Test some stuff
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]

- name: Run platform-specific tests
run: ./gradlew linuxX64Test --info

- name: Install Java for JVM tests
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'

- name: Run JVM tests
run: ./gradlew jvmTest --info

- name: Install browser for JS tests
uses: abhi1693/[email protected]
with:
browser: chrome

- name: Install Node for JS tests
uses: actions/setup-node@v3
with:
node-version: latest

- name: Run JS Browser tests
run: ./gradlew jsBrowserTest --info

- name: Run JS Node tests
run: ./gradlew jsNodeTest --info

- name: Publish test results
uses: actions/upload-artifact@v3
with:
name: test-results-linux
path: |
build/test-results/
build/reports/
test_macos:
name: Run unit tests on MacOS
runs-on: macos-latest
steps:
- uses: actions/[email protected]

- name: Run platform-specific tests
run: ./gradlew macosX64Test --info

- name: Install Java for JVM tests
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'

- name: Run JVM tests
run: ./gradlew jvmTest --info

- name: Install browser for JS tests
uses: abhi1693/[email protected]
with:
browser: chrome

- name: Install Node for JS tests
uses: actions/setup-node@v3
with:
node-version: latest

- name: Run JS Browser tests
run: ./gradlew jsBrowserTest --info

- name: Run JS Node tests
run: ./gradlew jsNodeTest --info

- name: Publish test results
uses: actions/upload-artifact@v3
with:
name: test-results-macos
path: |
build/test-results/
build/reports/
test_windows:
name: Run unit tests on Windows
runs-on: windows-latest
steps:
- uses: actions/[email protected]

- name: Run platform-specific tests
run: ./gradlew windowsX64Test --info

- name: Install Java for JVM tests
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'

- name: Run JVM tests
run: ./gradlew jvmTest --info

- name: Install browser for JS tests
uses: abhi1693/[email protected]
with:
browser: chrome

- name: Install Node for JS tests
uses: actions/setup-node@v3
with:
node-version: latest

- name: Run JS Browser tests
run: ./gradlew jsBrowserTest --info

- name: Run JS Node tests
run: ./gradlew jsNodeTest --info

- name: Publish test results
uses: actions/upload-artifact@v3
with:
name: test-results-windows
path: |
build/test-results/
build/reports/
- name: Print all lib files
run: |
ls /lib /lib64
ls /usr/lib /usr/lib64
ls /usr/local/lib /usr/local/lib64

0 comments on commit d5bd35d

Please sign in to comment.