Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
Merge pull request #32 from jgarzik/ci
Browse files Browse the repository at this point in the history
[CI] add linux build test
  • Loading branch information
jgarzik authored Feb 25, 2024
2 parents 133764e + 5ac467d commit 143a6e9
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/TestingCI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push]

env:
CARGO_TERM_COLOR: always

jobs:
linux-ubuntu:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install deps
run: sudo apt-get -y install flex bison autopoint gettext
- name: Prepare
run: ./autogen.sh && ./configure
- name: Build
run: make -s

2 changes: 2 additions & 0 deletions expr/expr.cc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ enum token_type {
};

extern "C" {
#if 0
long long yylval = 0;
#endif
#define YYSTYPE long long
#include "expr-parse.h"

Expand Down

0 comments on commit 143a6e9

Please sign in to comment.