Skip to content

Commit

Permalink
Add gcc14 runner
Browse files Browse the repository at this point in the history
  • Loading branch information
edo9300 committed Sep 18, 2024
1 parent f6cd999 commit 1c42a5a
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/edopro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,59 @@ jobs:
avatar_url: https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png
username: Github

Linux-gcc-14:
runs-on: ubuntu-24.04
env:
DEPLOY_BRANCH: travis-linux-gcc-14
TRAVIS_OS_NAME: linux
BUILD_CONFIG: release
ARCH: x64
steps:
- name: Set custom env vars
shell: bash
run: |
echo "VCPKG_ROOT=$PWD/vcpkg" >> $GITHUB_ENV
echo "VCPKG_CACHE_7Z_URL=$DEPENDENCIES_BASE_URL/installed_x64-linux.7z" >> $GITHUB_ENV
- name: Get apt packages
shell: bash
run: |
sudo apt remove libsqlite3-dev
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Install premake
shell: bash
run: ./travis/install-premake5.sh
- name: Install dependencies
shell: bash
run: ./travis/dependencies.sh
- name: Build
env:
CC: gcc-14
CXX: g++-14
shell: bash
run: ./travis/build.sh
- name: Predeploy
shell: bash
run: ./travis/predeploy.sh
- name: Deploy
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
shell: bash
run: ./travis/deploy.sh
- name: Log Failure
uses: sarisia/actions-status-discord@v1
if: failure()
with:
nodetail: true
description: |
[[${{ github.event.repository.name }}] ${{ github.job }} failed on ${{ github.ref }}](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}})
title: |
color: 0xff0000
webhook: ${{ secrets.DISCORD_WEBHOOK }}
avatar_url: https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png
username: Github

Linux-aarch64-gcc-7-5-0:
runs-on: ubuntu-latest
container: ubuntu:18.04
Expand Down

0 comments on commit 1c42a5a

Please sign in to comment.