Skip to content

Commit

Permalink
test gcc version 2
Browse files Browse the repository at this point in the history
  • Loading branch information
MarekKnapek committed May 17, 2024
1 parent a3fabca commit f2cfd8d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 28 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build_run_lnx_c.sh
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
gcc -v
sudo apt install gcc-13
gcc-13 -v


sudo apt install g++-13
g++-13 -v
29 changes: 2 additions & 27 deletions .github/workflows/workflow1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,9 @@
"build_run_c":
"strategy":
"matrix":
"proj": ["mkcc", "mkcfct", "mkcflt", "mkch", "mkci", "mkct", "mkvc"]
"cver": ["89", "99", "11", "18", "2x"]
"proj": ["mkcc"]
"cver": ["89"]
"runs-on": "ubuntu-latest"
"steps":
- "uses": "actions/checkout@main"
- "run": "bash ./.github/workflows/build_run_lnx_c.sh ${{matrix.proj}} ${{matrix.cver}}"
- "uses": "actions/upload-artifact@main"
"with":
"name": "${{matrix.proj}}-c${{matrix.cver}}.elf"
"path": "./mk_clib/app/${{matrix.proj}}-c${{matrix.cver}}.elf"
- "uses": "actions/upload-artifact@main"
"with":
"name": "${{matrix.proj}}-c${{matrix.cver}}.txt"
"path": "./mk_clib/app/${{matrix.proj}}-c${{matrix.cver}}.txt"
"build_run_cpp":
"strategy":
"matrix":
"proj": ["mkcc", "mkcfct", "mkcflt", "mkch", "mkci", "mkct", "mkvc"]
"cver": ["98", "11", "14", "17", "20"]
"runs-on": "ubuntu-latest"
"steps":
- "uses": "actions/checkout@main"
- "run": "bash ./.github/workflows/build_run_lnx_cpp.sh ${{matrix.proj}} ${{matrix.cver}}"
- "uses": "actions/upload-artifact@main"
"with":
"name": "${{matrix.proj}}-cpp${{matrix.cver}}.elf"
"path": "./mk_clib/app/${{matrix.proj}}-cpp${{matrix.cver}}.elf"
- "uses": "actions/upload-artifact@main"
"with":
"name": "${{matrix.proj}}-cpp${{matrix.cver}}.txt"
"path": "./mk_clib/app/${{matrix.proj}}-cpp${{matrix.cver}}.txt"

0 comments on commit f2cfd8d

Please sign in to comment.