aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index cc7893305..75811d83a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -20,15 +20,15 @@ on:
20 20
21jobs: 21jobs:
22 build_and_test: 22 build_and_test:
23 runs-on: ubuntu-20.04 23 runs-on: ubuntu-22.04
24 steps: 24 steps:
25 - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b 25 - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
26 - name: update package information 26 - name: update package information
27 run: sudo apt-get update 27 run: sudo apt-get update
28 - name: install dependencies 28 - name: install dependencies
29 run: sudo apt-get install gcc-11 libapparmor-dev libselinux1-dev expect xzdec 29 run: sudo apt-get install gcc-12 libapparmor-dev libselinux1-dev expect xzdec
30 - name: configure 30 - name: configure
31 run: CC=gcc-11 ./configure --enable-fatal-warnings --enable-analyzer --enable-apparmor --enable-selinux --prefix=/usr 31 run: CC=gcc-12 ./configure --enable-fatal-warnings --enable-analyzer --enable-apparmor --enable-selinux --prefix=/usr
32 - name: make 32 - name: make
33 run: make 33 run: make
34 - name: make install 34 - name: make install