Skip to content

Dup4/actions-setup-gcc

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

actions-setup-gcc

Test

This GitHub action sets up GCC in your workflow run.

  • Support Ubuntu and macOS.
  • Specify a version to install using the version parameter.

Usage

Use it in your workflow like this:

- name: Setup GCC
    uses: Dup4/actions-setup-gcc@v1
    with:
    version: latest

API

Input Value Default Description
version latest Install the latest version available in the repository.
any Install a specific version if it's available (see below).
cc true Set up cc/gcc/c++/g++/gcov executables.
false Don't set up the executables.
env true Set up CC/CXX/GCOV environment variables
false Don't set up the environment variables