Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NexushasTaken authored Dec 1, 2024
1 parent 7031af1 commit e69d5d2
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,15 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: sudo apt-get install libglfw3 libglfw3-dev libgles2-mesa-dev
- run: wget https://github.com/c3lang/c3c/releases/download/latest/c3-ubuntu-20.tar.gz
- run: tar xvf c3-ubuntu-20.tar.gz
- run: tree -L 2
- run: ./c3/c3c build examples_template
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install libglfw3 libglfw3-dev libgles2-mesa-dev
- name: Download c3 tool
run: wget https://github.com/c3lang/c3c/releases/download/latest/c3-ubuntu-20.tar.gz
- name: Extract c3 tool
run: tar xvf c3-ubuntu-20.tar.gz
#- name: List directory structure
# run: tree -L 2
- name: Build with c3
run: ./c3/c3c build examples_template

0 comments on commit e69d5d2

Please sign in to comment.