Resolve socket addresses to DNS names in the output. #90
Workflow file for this run
This file contains 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] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/staex-io/cijail-ci:latest@sha256:13c550b4e37ddc234167a48b202af4a25667b22160cd596982dee403cca7e6e0 | |
credentials: | |
username: token | |
password: ${{ secrets.GHCR_TOKEN }} | |
options: --cap-add SYS_PTRACE | |
env: | |
RUST_BACKTRACE: 1 | |
RUST_TEST_THREADS: 1 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CIJAIL_ENDPOINTS: 9.9.9.9:53 github.com:443 index.crates.io:443 static.crates.io:443 | |
pypi.org:443 files.pythonhosted.org:443 lb-140-82-112-4-iad.github.com:443 | |
lb-140-82-113-3-iad.github.com:443 lb-140-82-114-4-iad.github.com:443 lb-140-82-116-4-sea.github.com:443 | |
151.101.44.223:443 lb-140-82-113-4-iad.github.com:443 api.github.com:443 uploads.github.com:443 | |
lb-140-82-116-14-sea.github.com:443 lb-140-82-112-13-iad.github.com:443 lb-140-82-114-3-iad.github.com:443 | |
lb-140-82-116-3-sea.github.com:443 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: DNS | |
run: ./ci/dns.sh | |
- name: Lint | |
run: cijail ./ci/lint.sh | |
- name: Test | |
run: ./ci/test.sh | |
- name: Build | |
run: cijail ./ci/binaries.sh | |
- name: Release | |
run: ./ci/release.sh |