Add support for ALPN/SNI in std.net.tls #2626
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: Push | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| workflow_dispatch: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| env: | |
| REGISTRY: ghcr.io | |
| IMAGE_NAME: ${{ github.repository }} | |
| CARGO_HOME: ${{ github.workspace }}/.cargo-home | |
| # We set an explicit version to only install the components we need for CI. | |
| RUSTUP_TOOLCHAIN: '1.84' | |
| jobs: | |
| tests: | |
| name: Tests | |
| uses: ./.github/workflows/tests.yml | |
| nightly-container: | |
| name: Nightly container | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| packages: write | |
| needs: | |
| - tests | |
| if: github.ref_name == 'main' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: docker/metadata-action@v5 | |
| id: meta | |
| with: | |
| images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
| - uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| docs: | |
| name: Documentation | |
| runs-on: ubuntu-24.04 | |
| container: | |
| image: ghcr.io/inko-lang/inko:latest | |
| env: | |
| RCLONE_S3_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_ACCESS_KEY_ID }} | |
| RCLONE_S3_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_SECRET_ACCESS_KEY }} | |
| RCLONE_S3_ENDPOINT: https://${{ secrets.CLOUDFLARE_ACCOUNT_ID }}.r2.cloudflarestorage.com | |
| needs: | |
| - tests | |
| steps: | |
| - name: Install dependencies | |
| run: microdnf install --quiet --assumeyes rclone git tar make | |
| - uses: actions/checkout@v4 | |
| - uses: actions/cache@v4 | |
| with: | |
| path: '~/.local/share/inko/packages' | |
| key: docs-main-${{ hashFiles('docs/inko.pkg') }} | |
| - run: git config --global --add safe.directory $PWD | |
| - name: Build the documentation | |
| run: > | |
| if [[ ${{ github.ref_name }} = 'main' ]] | |
| then | |
| make docs/publish | |
| else | |
| make docs/build | |
| fi | |
| std-docs: | |
| name: Standard library documentation | |
| runs-on: ubuntu-24.04 | |
| container: | |
| image: ghcr.io/inko-lang/ci:fedora-amd64 | |
| env: | |
| RCLONE_S3_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_ACCESS_KEY_ID }} | |
| RCLONE_S3_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_SECRET_ACCESS_KEY }} | |
| RCLONE_S3_ENDPOINT: https://${{ secrets.CLOUDFLARE_ACCOUNT_ID }}.r2.cloudflarestorage.com | |
| needs: | |
| - tests | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/cache@v4 | |
| with: | |
| path: '${{ env.CARGO_HOME }}' | |
| key: std-docs-main-${{ hashFiles('Cargo.lock', 'rust-toolchain.toml') }} | |
| - run: git config --global --add safe.directory $PWD | |
| - name: Deploy the documentation | |
| run: > | |
| if [[ ${{ github.ref_name }} = 'main' ]] | |
| then | |
| make std-docs/publish | |
| else | |
| make std-docs/build | |
| fi |