Skip to content

Commit da35126

Browse files
committed
Partial inline
1 parent f962bb6 commit da35126

File tree

2 files changed

+31
-30
lines changed

2 files changed

+31
-30
lines changed

.github/actions/coverage-report/action.yml

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -26,36 +26,6 @@ env:
2626
runs:
2727
using: composite
2828
steps:
29-
- name: Read Config
30-
shell: ${{ env.shell }}
31-
run: cat .github/config.env >> $GITHUB_ENV
32-
33-
- name: Install Necessary Packages
34-
shell: ${{ env.shell }}
35-
run: |
36-
sudo apt-get update
37-
sudo apt-get install -y net-tools libssl-dev gdb gcovr curl
38-
39-
- name: Download hazelcast-enterprise-tests.jar
40-
shell: ${{ env.shell }}
41-
run: |
42-
curl -H "Authorization: token ${{ inputs.GH_TOKEN }}" https://raw.githubusercontent.com/hazelcast/private-test-artifacts/data/certs.jar > hazelcast-enterprise-${{ env.HAZELCAST_VERSION }}-tests.jar
43-
44-
- name: Install Boost
45-
shell: ${{ env.shell }}
46-
run: |
47-
sudo ./scripts/install-boost.sh ${{ inputs.BOOST_VERSION }}
48-
49-
- name: Install Thrift
50-
shell: ${{ env.shell }}
51-
run: |
52-
sudo ./scripts/install-thrift.sh ${{ inputs.THRIFT_VERSION }}
53-
54-
- name: Setup JDK
55-
uses: actions/setup-java@v4
56-
with:
57-
java-version: ${{ env.JAVA_VERSION }}
58-
distribution: ${{ env.JAVA_DISTRIBUTION }}
5929

6030
- name: Build
6131
env:

.github/workflows/build-pr.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,37 @@ jobs:
115115
ref: ${{ needs.get-refs.outputs.ref }}
116116
token: ${{ secrets.GH_TOKEN }}
117117

118+
- name: Read Config
119+
shell: bash
120+
run: cat .github/config.env >> $GITHUB_ENV
121+
122+
- name: Install Necessary Packages
123+
shell: bash
124+
run: |
125+
sudo apt-get update
126+
sudo apt-get install -y net-tools libssl-dev gdb gcovr curl
127+
128+
- name: Download hazelcast-enterprise-tests.jar
129+
shell: bash
130+
run: |
131+
curl -H "Authorization: token ${{ secrets.GH_TOKEN }}" https://raw.githubusercontent.com/hazelcast/private-test-artifacts/data/certs.jar > hazelcast-enterprise-${{ env.HAZELCAST_VERSION }}-tests.jar
132+
133+
- name: Install Boost
134+
shell: bash
135+
run: |
136+
sudo ./scripts/install-boost.sh ${{ env.boost_version }}
137+
138+
- name: Install Thrift
139+
shell: bash
140+
run: |
141+
sudo ./scripts/install-thrift.sh ${{ env.thrift_version }}
142+
143+
- name: Setup JDK
144+
uses: actions/setup-java@v4
145+
with:
146+
java-version: ${{ env.JAVA_VERSION }}
147+
distribution: ${{ env.JAVA_DISTRIBUTION }}
148+
118149
- uses: ./.github/actions/coverage-report
119150
with:
120151
BOOST_VERSION: ${{ env.boost_version }}

0 commit comments

Comments
 (0)