-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Upgrade to Ubuntu 24.04 - apply AppArmor settings for Docker
- Loading branch information
1 parent
b341356
commit c7779e7
Showing
3 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,12 +56,16 @@ jobs: | |
|
||
build-linux-clangpdb: | ||
name: Linux CLANGPDB | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
env: | ||
TOOLCHAINS: CLANGPDB | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Apply Docker AppArmor settings | ||
run: | | ||
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1 | ||
- name: Use Docker in rootless mode. | ||
uses: ScribeMD/[email protected] | ||
|
||
|
@@ -79,12 +83,16 @@ jobs: | |
|
||
build-linux-gcc5: | ||
name: Linux GCC | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
env: | ||
TOOLCHAINS: GCC | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Apply Docker AppArmor settings | ||
run: | | ||
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1 | ||
- name: Use Docker in rootless mode. | ||
uses: ScribeMD/[email protected] | ||
|
||
|
@@ -102,12 +110,16 @@ jobs: | |
|
||
build-linux-clangdwarf: | ||
name: Linux CLANGDWARF | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
env: | ||
TOOLCHAINS: CLANGDWARF | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Apply Docker AppArmor settings | ||
run: | | ||
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1 | ||
- name: Use Docker in rootless mode. | ||
uses: ScribeMD/[email protected] | ||
|
||
|
@@ -125,10 +137,14 @@ jobs: | |
|
||
build-linux-docs: | ||
name: Linux Docs | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Apply Docker AppArmor settings | ||
run: | | ||
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1 | ||
- name: Use Docker in rootless mode. | ||
uses: ScribeMD/[email protected] | ||
|
||
|
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