mirror of
https://github.com/pdewacht/brlaser
synced 2025-04-23 19:26:43 +02:00
Compare commits
10 Commits
9d7ddda838
...
2a49e3287c
Author | SHA1 | Date | |
---|---|---|---|
|
2a49e3287c | ||
|
73b996a049 | ||
|
e52db5ba46 | ||
|
48976ab82c | ||
|
30bd80cb8b | ||
|
ea7e8cd274 | ||
|
df7c37eacf | ||
|
b58a014a51 | ||
|
bf02b1d7b7 | ||
|
9546acc17c |
39
.github/workflows/build.yml
vendored
Normal file
39
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
name: build
|
||||
on: [ push, pull_request ]
|
||||
jobs:
|
||||
linux:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
compiler: [ clang++, gcc++ ]
|
||||
steps:
|
||||
- name: Add repository
|
||||
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
||||
- name: Install packages
|
||||
run: sudo apt install libcups2-dev
|
||||
- uses: actions/checkout@v3
|
||||
- name: Configure
|
||||
run: cmake .
|
||||
- name: Make
|
||||
run: make
|
||||
env:
|
||||
CXX: ${{ matrix.compiler }}
|
||||
- name: Run tests
|
||||
run: make check
|
||||
macos:
|
||||
runs-on: macos-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
compiler: [ clang++, gcc++ ]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Configure
|
||||
run: cmake .
|
||||
- name: Make
|
||||
run: make
|
||||
env:
|
||||
CXX: ${{ matrix.compiler }}
|
||||
- name: Run tests
|
||||
run: make check
|
@ -332,7 +332,7 @@ Option "brlaserEconomode/Toner save mode" Boolean AnySetup 10
|
||||
Attribute "NickName" "" "Brother MFC-7460DN, $USING"
|
||||
Attribute "1284DeviceID" "" "MFG:Brother;CMD:PJL,HBP;MDL:MFC-7460DN;CLS:PRINTER;CID:Brother Laser Type1;"
|
||||
Duplex rotated
|
||||
PCFileName "br7365dn.ppd"
|
||||
PCFileName "br7460dn.ppd"
|
||||
}
|
||||
|
||||
{
|
||||
|
@ -18,6 +18,7 @@
|
||||
#ifndef TEMPFILE_H
|
||||
#define TEMPFILE_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <vector>
|
||||
|
Loading…
x
Reference in New Issue
Block a user