diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-01-09 23:28:55 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-01-09 23:28:55 +0100 |
commit | feb9269a25eaa3804843637768da1f1cd51dbeb3 (patch) | |
tree | cf680e7513152713e3e662ac4357de2216bc883d | |
parent | 06c1b20ec726faaf303dadffeca8450f945cc567 (diff) |
Fixed Github Actions build; gcc-7 is not available on ubuntu-latest anymore.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 284cd2a..4e05c06 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,10 +21,10 @@ jobs: matrix: os: ["ubuntu-latest", "ubuntu-18.04"] include: - - compiler: "default-cc" + - compiler: "gcc" os: "ubuntu-latest" - compiler: "gcc-7" - os: "ubuntu-latest" + os: "ubuntu-18.04" steps: - uses: actions/checkout@v2 |