|
33 | 33 |
|
34 | 34 | with:
|
35 | 35 | node-version: ${{matrix.node-version}}
|
36 |
| - - uses: actions/setup-java@v3 |
| 36 | + - name: Setup java 17 |
| 37 | + uses: actions/setup-java@v3 |
37 | 38 | with:
|
38 | 39 | distribution: 'temurin'
|
39 | 40 | java-version: '17'
|
|
44 | 45 | - name: Run tests
|
45 | 46 | run: npm test
|
46 | 47 | timeout-minutes: 20
|
| 48 | + - name: Create package |
| 49 | + if: ${{matrix.node-version == '18.x'}} |
| 50 | + run: | |
| 51 | + node -e 'let p=require("./package.json");p.files.push("dist/*.node");require("fs").writeFileSync("package.json",JSON.stringify(p,null,4))' |
| 52 | + npm pack |
| 53 | + - name: Upload package |
| 54 | + uses: actions/upload-artifact@v3 |
| 55 | + if: ${{matrix.node-version == '18.x'}} |
| 56 | + with: |
| 57 | + name: java-x64-${{matrix.os}} |
| 58 | + path: java-bridge-*.tgz |
| 59 | + |
| 60 | + test-linux-aarch64-gnu-binding: |
| 61 | + strategy: |
| 62 | + fail-fast: false |
| 63 | + matrix: |
| 64 | + node-version: [16, 18] |
| 65 | + runs-on: ubuntu-20.04 |
| 66 | + steps: |
| 67 | + - uses: actions/checkout@v3 |
| 68 | + - name: Setup Node.js ${{matrix.node-version}} environment |
| 69 | + |
| 70 | + with: |
| 71 | + node-version: ${{matrix.node-version}} |
| 72 | + - name: Setup java 17 |
| 73 | + uses: actions/setup-java@v3 |
| 74 | + with: |
| 75 | + distribution: 'temurin' |
| 76 | + java-version: '17' |
| 77 | + - name: Install rust toolchain |
| 78 | + uses: actions-rs/toolchain@v1 |
| 79 | + with: |
| 80 | + toolchain: stable |
| 81 | + profile: minimal |
| 82 | + override: true |
| 83 | + target: aarch64-unknown-linux-gnu |
| 84 | + - name: Rust Cache |
| 85 | + |
| 86 | + - name: Install cross compile toolchain |
| 87 | + run: | |
| 88 | + sudo apt-get update |
| 89 | + sudo apt-get install gcc-multilib -y |
| 90 | + sudo apt-get install gcc-aarch64-linux-gnu g++-aarch64-linux-gnu -y |
| 91 | + - name: Set linker |
| 92 | + run: | |
| 93 | + mkdir .cargo |
| 94 | + printf '[target.aarch64-unknown-linux-gnu]\nlinker = "aarch64-linux-gnu-gcc"\n' >> .cargo/config |
| 95 | + - name: Install |
| 96 | + run: npm ci |
| 97 | + - name: Build |
| 98 | + run: npm run build -- -- --target aarch64-unknown-linux-gnu |
| 99 | + - name: Install test dependencies |
| 100 | + run: | |
| 101 | + npm config set supportedArchitectures.cpu "arm64" |
| 102 | + npm config set supportedArchitectures.libc "glibc" |
| 103 | + npm install |
| 104 | + - name: Init qemu |
| 105 | + run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes |
| 106 | + - name: Run tests |
| 107 | + uses: addnab/docker-run-action@v3 |
| 108 | + timeout-minutes: 30 |
| 109 | + with: |
| 110 | + image: arm64v8/node:${{matrix.node-version}}-bullseye |
| 111 | + options: -v ${{ github.workspace }}:/github/workspace -w /github/workspace |
| 112 | + run: | |
| 113 | + apt-get update |
| 114 | + apt-get install openjdk-17-jre-headless -y |
| 115 | + npm config set cache /tmp --global |
| 116 | + export CI=true |
| 117 | + npm install |
| 118 | + npm run testOnly |
| 119 | + - name: Create package |
| 120 | + if: ${{matrix.node-version == '18'}} |
| 121 | + run: | |
| 122 | + node -e 'let p=require("./package.json");p.files.push("dist/*.node");require("fs").writeFileSync("package.json",JSON.stringify(p,null,4))' |
| 123 | + npm pack |
| 124 | + - name: Upload package |
| 125 | + uses: actions/upload-artifact@v3 |
| 126 | + if: ${{matrix.node-version == '18'}} |
| 127 | + with: |
| 128 | + name: java-arm64-ubuntu |
| 129 | + path: java-bridge-*.tgz |
47 | 130 |
|
48 | 131 | benchmark:
|
49 | 132 | runs-on: ubuntu-latest
|
|
55 | 138 | node-version: 16.x
|
56 | 139 | - uses: actions/setup-java@v3
|
57 | 140 | with:
|
58 |
| - distribution: 'temurin' # See 'Supported distributions' for available options |
| 141 | + distribution: 'temurin' |
59 | 142 | java-version: '17'
|
60 | 143 | - name: Rust Cache
|
61 | 144 |
|
|
0 commit comments