-
Notifications
You must be signed in to change notification settings - Fork 490
53 lines (49 loc) · 1.5 KB
/
build-linux.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
name: "Build: Linux"
on:
push:
branches:
- master
paths:
- 'src/**'
pull_request:
branches:
- master
paths:
- 'src/**'
workflow_dispatch:
# nothing
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
mode: ["debug", "release"]
steps:
- uses: actions/checkout@v4
with:
repository: omnetpp/omnetpp
path: omnetpp
ref: omnetpp-6.x
- uses: actions/checkout@v4
with:
path: inet
- run: mkdir -p /home/runner/work/ccache
- uses: actions/cache@v4
with:
path: /home/runner/work/ccache
key: native-${{ matrix.mode }}-ccache-${{ github.run_id }}
# See: https://github.com/actions/cache/blob/main/tips-and-workarounds.md#update-a-cache
restore-keys: native-${{ matrix.mode }}-ccache
- name: Building binaries
env:
MODE: ${{ matrix.mode }}
run: |
echo "::group::Installing packages"
sudo apt update
sudo apt install -y --no-install-recommends git wget curl ca-certificates \
make ccache clang lld gdb bison flex perl doxygen graphviz libxml2-dev zlib1g-dev \
libavcodec-dev libavformat-dev libavutil-dev libswresample-dev libz3-dev \
libopenscenegraph-dev python3
echo "::endgroup::"
source $GITHUB_WORKSPACE/inet/_scripts/github/build-omnetpp.sh
source $GITHUB_WORKSPACE/inet/_scripts/github/build-inet.sh