-
Notifications
You must be signed in to change notification settings - Fork 126
75 lines (75 loc) · 2.45 KB
/
integrations.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Integration tests
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
env:
CC: gcc
jobs:
libssh2:
if: github.repository_owner == 'aws'
runs-on: ubuntu-latest
steps:
- name: Install OS Dependencies
run: |
sudo apt-get update -o Acquire::Languages=none -o Acquire::Translation=none
sudo apt-get -y --no-install-recommends install cmake gcc ninja-build golang make
- uses: actions/checkout@v4
- name: Run libssh2 integration tests
run: |
./tests/ci/integration/run_libssh2_integration.sh
libevent:
if: github.repository_owner == 'aws'
runs-on: ubuntu-latest
steps:
- name: Install OS Dependencies
run: |
sudo apt-get update -o Acquire::Languages=none -o Acquire::Translation=none
sudo apt-get -y --no-install-recommends install \
cmake gcc ninja-build golang
- uses: actions/checkout@v4
- name: Run libevent build
run: |
./tests/ci/integration/run_libevent_integration.sh
librdkafka:
if: github.repository_owner == 'aws'
runs-on: ubuntu-latest
steps:
- name: Install OS Dependencies
run: |
sudo apt-get update -o Acquire::Languages=none -o Acquire::Translation=none
sudo apt-get -y --no-install-recommends install \
cmake gcc ninja-build golang
- uses: actions/checkout@v4
- name: Run librdkafka build
run: |
./tests/ci/integration/run_librdkafka_integration.sh
rust-openssl:
if: github.repository_owner == 'aws'
runs-on: ubuntu-latest
steps:
- name: Checkout aws-lc
uses: actions/checkout@v4
with:
path: aws-lc
- name: Checkout rust-openssl
uses: actions/checkout@v4
with:
repository: sfackler/rust-openssl
path: rust-openssl
- uses: dtolnay/rust-toolchain@stable
id: toolchain
- name: Set Rust toolchain override
run: rustup override set ${{ steps.toolchain.outputs.name }}
- name: Install bindgen-cli
run: cargo install --locked bindgen-cli
- name: Run rust-openssl integration tests
env:
RUST_OPENSSL_SRC_DIR: "${{ github.workspace }}/rust-openssl"
run: |
pushd "${GITHUB_WORKSPACE}/aws-lc"
./tests/ci/integration/run_rust_openssl_integration.sh