Move md4 out of FIPS module (#2956) #9773
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: ABI Monitoring | |
| on: | |
| push: | |
| branches: [ '*' ] | |
| pull_request: | |
| branches: [ '*' ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref_name }} | |
| cancel-in-progress: true | |
| env: | |
| DOCKER_BUILDKIT: 1 | |
| GOPROXY: https://proxy.golang.org,direct | |
| permissions: | |
| contents: read | |
| jobs: | |
| libcrypto-incremental: | |
| if: github.repository_owner == 'aws' | |
| name: libcrypto incremental ABI check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| repository: aws/aws-lc | |
| ref: ${{ github.event_name == 'push' && github.event.ref || github.event.pull_request.head.sha }} | |
| path: ${{ github.workspace }}/next | |
| - uses: actions/checkout@v3 | |
| with: | |
| repository: aws/aws-lc | |
| ref: ${{ github.event_name == 'push' && github.event.before || github.event.pull_request.base.sha }} | |
| path: ${{ github.workspace }}/previous | |
| - name: Build Docker Image | |
| working-directory: ${{ github.workspace }}/next/.github/docker_images/abidiff | |
| run: | | |
| docker build -t abidiff . | |
| - name: Perform libcrypto ABI Diff | |
| run: | | |
| docker run -v ${{ github.workspace }}/previous:/previous -v ${{ github.workspace }}/next:/next abidiff crypto | |
| libssl-incremental: | |
| if: github.repository_owner == 'aws' | |
| name: libssl incremental ABI check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| repository: aws/aws-lc | |
| ref: ${{ github.event_name == 'push' && github.event.ref || github.event.pull_request.head.sha }} | |
| path: ${{ github.workspace }}/next | |
| - uses: actions/checkout@v3 | |
| with: | |
| repository: aws/aws-lc | |
| ref: ${{ github.event_name == 'push' && github.event.before || github.event.pull_request.base.sha }} | |
| path: ${{ github.workspace }}/previous | |
| - name: Build Docker Image | |
| working-directory: ${{ github.workspace }}/next/.github/docker_images/abidiff | |
| run: | | |
| docker build -t abidiff . | |
| - name: Perform libssl ABI Diff | |
| run: | | |
| docker run -v ${{ github.workspace }}/previous:/previous -v ${{ github.workspace }}/next:/next abidiff ssl | |
| libcrypto-release: | |
| if: github.repository_owner == 'aws' | |
| name: libcrypto release ABI check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| repository: aws/aws-lc | |
| ref: ${{ github.event_name == 'push' && github.event.ref || github.event.pull_request.head.sha }} | |
| path: ${{ github.workspace }}/next | |
| - name: Get latest release tag | |
| id: get-latest-tag | |
| uses: ./next/.github/actions/latest-semver-tag | |
| with: | |
| path: ${{ github.workspace }}/next | |
| - uses: actions/checkout@v3 | |
| with: | |
| repository: aws/aws-lc | |
| ref: ${{ steps.get-latest-tag.outputs.latest-tag }} | |
| path: ${{ github.workspace }}/previous | |
| - name: Build Docker Image | |
| working-directory: ${{ github.workspace }}/next/.github/docker_images/abidiff | |
| run: | | |
| docker build -t abidiff . | |
| - name: Perform libcrypto ABI Diff against release | |
| run: | | |
| docker run -v ${{ github.workspace }}/previous:/previous -v ${{ github.workspace }}/next:/next abidiff crypto | |
| libssl-release: | |
| if: github.repository_owner == 'aws' | |
| name: libssl release ABI check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| repository: aws/aws-lc | |
| ref: ${{ github.event_name == 'push' && github.event.ref || github.event.pull_request.head.sha }} | |
| path: ${{ github.workspace }}/next | |
| - name: Get latest release tag | |
| id: get-latest-tag | |
| uses: ./next/.github/actions/latest-semver-tag | |
| with: | |
| path: ${{ github.workspace }}/next | |
| - uses: actions/checkout@v3 | |
| with: | |
| repository: aws/aws-lc | |
| ref: ${{ steps.get-latest-tag.outputs.latest-tag }} | |
| path: ${{ github.workspace }}/previous | |
| - name: Build Docker Image | |
| working-directory: ${{ github.workspace }}/next/.github/docker_images/abidiff | |
| run: | | |
| docker build -t abidiff . | |
| - name: Perform libssl ABI Diff against release | |
| run: | | |
| docker run -v ${{ github.workspace }}/previous:/previous -v ${{ github.workspace }}/next:/next abidiff ssl |