Skip to content

Commit

Permalink
Remove non-ESP jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Danielius1922 committed Jan 26, 2025
1 parent f406479 commit 605340d
Show file tree
Hide file tree
Showing 25 changed files with 53 additions and 2,298 deletions.
36 changes: 0 additions & 36 deletions .github/workflows/CLA.yml

This file was deleted.

88 changes: 0 additions & 88 deletions .github/workflows/android.yml

This file was deleted.

100 changes: 50 additions & 50 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,60 +19,60 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
make_linux_java:
# The type of runner that the job will run on
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
# tcp on, ipv4 on
- args: "TCP=1 IPV4=1"
# cloud on (tcp on, ipv4 on)
- args: "CLOUD=1"
# cloud on (tcp on, ipv4 on), debug on
- args: "CLOUD=1 DEBUG=1"
# cloud on (tcp on, ipv4 on), debug on, mbedTLS v3.6.2
- args: "CLOUD=1 DEBUG=1 MBEDTLS_FORCE_3_6_2=1"
# make_linux_java:
# # The type of runner that the job will run on
# runs-on: ubuntu-22.04
# strategy:
# fail-fast: false
# matrix:
# include:
# # tcp on, ipv4 on
# - args: "TCP=1 IPV4=1"
# # cloud on (tcp on, ipv4 on)
# - args: "CLOUD=1"
# # cloud on (tcp on, ipv4 on), debug on
# - args: "CLOUD=1 DEBUG=1"
# # cloud on (tcp on, ipv4 on), debug on, mbedTLS v3.6.2
# - args: "CLOUD=1 DEBUG=1 MBEDTLS_FORCE_3_6_2=1"

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: "true"
# # Steps represent a sequence of tasks that will be executed as part of the job
# steps:
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
# - name: Checkout repository
# uses: actions/checkout@v4
# with:
# submodules: "true"

# Runs a set of commands using the runners shell
- name: build
run: |
# the setup
sudo apt-get update -y
sudo apt-get -y install make autoconf swig default-jdk
swig -version
java -version
javac -version
# the actual build
cd port/linux
make JAVA=1 ${{ matrix.args }}
cd ../../swig/apps/unit_test
wget --quiet --output-document=junit-4.13.jar https://search.maven.org/remotecontent?filepath=junit/junit/4.13/junit-4.13.jar
wget --quiet --output-document=hamcrest-core-1.3.jar https://search.maven.org/remotecontent?filepath=org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar
JUNIT4=./junit-4.13.jar ./build-unit-tests.sh
JUNIT4=./junit-4.13.jar HAMCREST_CORE=./hamcrest-core-1.3.jar ./run-unit-tests.sh
# # Runs a set of commands using the runners shell
# - name: build
# run: |
# # the setup
# sudo apt-get update -y
# sudo apt-get -y install make autoconf swig default-jdk
# swig -version
# java -version
# javac -version
# # the actual build
# cd port/linux
# make JAVA=1 ${{ matrix.args }}
# cd ../../swig/apps/unit_test
# wget --quiet --output-document=junit-4.13.jar https://search.maven.org/remotecontent?filepath=junit/junit/4.13/junit-4.13.jar
# wget --quiet --output-document=hamcrest-core-1.3.jar https://search.maven.org/remotecontent?filepath=org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar
# JUNIT4=./junit-4.13.jar ./build-unit-tests.sh
# JUNIT4=./junit-4.13.jar HAMCREST_CORE=./hamcrest-core-1.3.jar ./run-unit-tests.sh

ctt_build:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: "true"
# ctt_build:
# runs-on: ubuntu-22.04
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# with:
# submodules: "true"

- name: build
run: |
cd port/linux
make TCP=1 MNT=1 SWUPDATE=1 CLOUD=1 IPV4=0 CREATE=1 OSCORE=1
# - name: build
# run: |
# cd port/linux
# make TCP=1 MNT=1 SWUPDATE=1 CLOUD=1 IPV4=0 CREATE=1 OSCORE=1

build_esp32:
# The type of runner that the job will run on
Expand Down
147 changes: 0 additions & 147 deletions .github/workflows/cmake-linux.yml

This file was deleted.

Loading

0 comments on commit 605340d

Please sign in to comment.