Use CI local vcpkg copy and silence CodeQL warnings #412
Workflow file for this run
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: OSX | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.c' | |
| - '**.h' | |
| - '**.m' | |
| - '**.sh' | |
| - .github/workflows/macos.yml | |
| - '**.am' | |
| - MacOSX/** | |
| - configure.ac | |
| push: | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [macos-26, macos-15, macos-14] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: .github/setup-macos.sh | |
| env: | |
| KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
| PASS_SECRETS_TAR_ENC: ${{ secrets.PASS_SECRETS_TAR_ENC }} | |
| - name: Checkout OpenSSL sources | |
| uses: actions/checkout@v5 | |
| with: | |
| repository: openssl/openssl | |
| ref: openssl-3.5 | |
| path: openssl | |
| - name: Get OpenSSL commit hash | |
| id: openssl_hash | |
| run: echo "hash=$(cd openssl && git rev-parse HEAD)" >> "$GITHUB_OUTPUT" | |
| - uses: actions/cache@v4 | |
| id: cache | |
| with: | |
| path: openssl_bin | |
| key: ${{ matrix.os }}-OpenSSL-${{ steps.openssl_hash.outputs.hash }} | |
| - run: sh MacOSX/build-openssl-macos.sh | |
| if: steps.cache.outputs.cache-hit != 'true' | |
| - run: .github/build.sh | |
| env: | |
| CODE_SIGN_IDENTITY: ${{ secrets.CODE_SIGN_IDENTITY }} | |
| DEVELOPMENT_TEAM: ${{ secrets.DEVELOPMENT_TEAM }} | |
| INSTALLER_SIGN_IDENTITY: ${{ secrets.INSTALLER_SIGN_IDENTITY }} | |
| - name: Cache build artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: opensc-build-${{ matrix.os }} | |
| path: | |
| OpenSC*.dmg | |
| - run: .github/cleanup-macos.sh | |
| env: | |
| KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
| PASS_SECRETS_TAR_ENC: ${{ secrets.PASS_SECRETS_TAR_ENC }} | |
| - name: Upload test logs | |
| uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: ${{ matrix.os }}-logs | |
| path: | | |
| config.log | |
| build-libressl: | |
| strategy: | |
| matrix: | |
| os: [macos-26, macos-15, macos-14] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: .github/setup-macos.sh libressl | |
| - run: .github/build.sh libressl | |
| - run: .github/cleanup-macos.sh | |
| - name: Upload test logs | |
| uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: ${{ matrix.os }}-libressl-logs | |
| path: | | |
| config.log | |
| push-artifacts: | |
| runs-on: macos-latest | |
| needs: [build] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Pull build artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: opensc-build-macos-15 | |
| - run: git config --global user.email "builds@github.com" | |
| - run: git config --global user.name "Github Actions"; | |
| - run: .github/push_artifacts.sh "Github Actions ${GITHUB_REF}" | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| if: ${{ github.repository == 'OpenSC/OpenSC' }} |