Add OLD_LD to build-ubuntu-gcc job #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Build | |
on: push | |
jobs: | |
build-ubuntu-clang: | |
name: ubuntu-clang | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Clone the grug submodule | |
run: git submodule update --init | |
- name: Install nasm | |
run: sudo apt install nasm | |
- name: Run the tests | |
run: ./tests.sh | |
env: | |
OLD_LD: | |
build-ubuntu-gcc: | |
name: ubuntu-gcc | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Clone the grug submodule | |
run: git submodule update --init | |
- name: Install nasm | |
run: sudo apt install nasm | |
- name: Run the tests | |
run: ./tests.sh | |
env: | |
OLD_LD: |