try 22.04 #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| tags: | |
| - v*.*.* | |
| pull_request: | |
| branches: [ master ] | |
| permissions: | |
| contents: write # to allow workflow to publish release | |
| jobs: | |
| build: | |
| name: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [22.x] | |
| os: [ubuntu-22.04, windows-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.node-version' | |
| - run: | | |
| sudo apt-get install gnome-keyring \ | |
| libsecret-1-dev \ | |
| dbus-x11 \ | |
| python3-dev | |
| if: ${{ matrix.os == 'ubuntu-22.04' }} | |
| name: Install additional dependencies | |
| - run: npm ci | |
| name: Setup environment | |
| - run: npm run build | |
| name: Build native module from source | |
| - run: | | |
| echo "Install keyring..." | |
| pip3 install --upgrade pip | |
| pip3 install keyring | |
| echo "Prepare D-Bus session..." | |
| eval $(dbus-launch --sh-syntax); | |
| eval $(echo 'somecredstorepass' | gnome-keyring-daemon --unlock) | |
| echo "Create a test key using script..." | |
| python -c "import keyring;keyring.set_password('system', 'login', 'pwd');" | |
| npm test | |
| if: ${{ matrix.os == 'ubuntu-22.04' }} | |
| name: Run tests (Linux) | |
| - run: npm test | |
| if: ${{ matrix.os != 'ubuntu-22.04' }} | |
| name: Run tests (Windows/macOS) | |
| - run: npm run prebuild-napi-x64 | |
| name: Prebuild (x64) | |
| - run: npm run prebuild-napi-arm64 | |
| name: Prebuild (arm64) | |
| if: ${{ matrix.os != 'ubuntu-22.04' }} | |
| - run: npm run prebuild-napi-ia32 | |
| if: ${{ matrix.os == 'windows-2019' }} | |
| name: Prebuild (Windows x86) | |
| - run: | | |
| mkdir -p prebuilds && chmod 777 prebuilds | |
| docker build -t node-keytar/i386 docker/i386 | |
| docker run --rm -v ${PWD}:/project node-keytar/i386 /bin/bash -c "cd /project && npm run prebuild-napi-ia32 && rm -rf build" | |
| docker build -t node-keytar/arm64-cross-compile docker/arm64-cross-compile | |
| docker run --rm -v ${PWD}:/project node-keytar/arm64-cross-compile /bin/bash -c "cd /project && npm run prebuild-napi-arm64 && rm -rf build" | |
| docker run --rm -v ${PWD}:/project node-keytar/arm64-cross-compile /bin/bash -c "cd /project && npm run prebuild-napi-arm && rm -rf build" | |
| docker build -t node-keytar/armv7l-cross-compile docker/armv7l-cross-compile | |
| docker run --rm -v ${PWD}:/project node-keytar/armv7l-cross-compile /bin/bash -c "cd /project && npm run prebuild-napi-armv7l" | |
| if: ${{ matrix.os == 'ubuntu-22.04' }} | |
| name: Prebuild (Linux x86 + ARM64 + ARMV7L) | |
| - run: | | |
| ls -R prebuilds/ | |
| name: List prebuilds | |
| shell: bash | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: prebuild-${{ matrix.os }} | |
| path: prebuilds/ | |
| - name: Upload prebuilds to GitHub | |
| run: npx prebuild --verbose --upload-all ${{ secrets.GITHUB_TOKEN }} | |
| if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
| alpine-build: | |
| runs-on: ubuntu-22.04 | |
| container: node:22-alpine3.20 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install additional dependencies | |
| run: | | |
| apk add g++ make python3 libsecret-dev | |
| - run: npm ci | |
| name: Setup environment | |
| - run: | | |
| npm run prebuild-napi-x64 | |
| npm run prebuild-napi-arm64 | |
| npm run prebuild-napi-arm | |
| name: Prebuild | |
| - run: | | |
| ls prebuilds/ | |
| name: List prebuilds | |
| - name: Upload prebuilds to GitHub | |
| run: npx prebuild --verbose --upload-all ${{ secrets.GITHUB_TOKEN }} | |
| if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
| # Separate step for publishing to NPM so we're sure that generating + uploading prebuilds worked on all platforms | |
| npm-publish: | |
| needs: [build, alpine-build] | |
| name: Publish to NPM | |
| runs-on: ubuntu-22.04 | |
| if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install NodeJS | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.node-version' | |
| registry-url: 'https://registry.npmjs.org' | |
| - run: sudo apt-get install libsecret-1-dev | |
| name: Install additional dependencies | |
| - run: npm ci | |
| name: Setup environment | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| path: prebuilds | |
| merge-multiple: true | |
| - run: npm publish --access public | |
| name: Upload to NPM | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} |